mirror of
https://github.com/Foltik/Shimapan
synced 2024-11-10 23:53:31 -05:00
11 lines
439 B
HTML
11 lines
439 B
HTML
|
<form ng-submit="register()">
|
||
|
<div class="form-group">
|
||
|
<label for="username">Username</label>
|
||
|
<input id="username" class="form-control" type="text" ng-model="username"/>
|
||
|
</div>
|
||
|
<div class="form-group">
|
||
|
<label for="password">Password</label>
|
||
|
<input id="password" class="form-control" type="password" ng-model="password"/>
|
||
|
</div>
|
||
|
<button type="submit" class="btn">Register</button>
|
||
|
</form>
|