Sengi-Windows-MacOS-Linux/src/app/components/floating-column/add-new-account/add-new-account.component.html

18 lines
1.0 KiB
HTML
Raw Normal View History

2019-07-07 02:13:05 +02:00
<div class="panel" [class.comrad__background]="isComrad">
<h3 class="panel__title" [class.comrad__text]="isComrad">Add new account</h3>
2019-07-07 02:13:05 +02:00
<h2 class="comrad__title" *ngIf="isComrad">Welcome Comrad!</h2>
<form (ngSubmit)="onSubmit()">
2019-07-07 02:13:05 +02:00
<label [class.comrad__text]="isComrad">Please provide your <span *ngIf="isComrad">comrad</span> account:</label>
<input type="text" class="form-control form-control-sm form-color" [(ngModel)]="mastodonFullHandle" name="mastodonFullHandle" [class.comrad__input]="isComrad"
placeholder="@nickname@mastodon.social" />
<br />
2019-07-07 02:13:05 +02:00
<button type="submit" class="btn btn-success btn-sm" [class.comrad__button]="isComrad">Submit</button>
</form>
2019-07-07 02:13:05 +02:00
<div *ngIf="isComrad" class="comrad__video">
<iframe width="300" height="170" src="https://www.youtube.com/embed/NzBjnoRG7Mo?feature=oembed&autoplay=1&auto_play=1" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>