Du kannst nicht mehr als 25 Themen auswählen
Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
|
- <div class="row">
- <div class="col-xs-12 col-sm-10 col-md-8 col-sm-offset-1 col-md-offset-2">
- <form (ngSubmit)="onSignup(f)" #f="ngForm">
- <div class="form-group">
- <label for="email">Mail</label>
- <input type="email" name="email" id="email" ngModel class="form-control">
- </div>
- <div class="form-group">
- <label for="password">Password</label>
- <input type="password" name="password" id="password" ngModel class="form-control">
- </div>
- <button class="btn btn-primary" type="submit">Sign Up</button>
- </form>
- </div>
- </div>
|