Skip to content
Permalink
2736dcd30e
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
18 lines (15 sloc) 755 Bytes
<div class="row">
<div ng-controller='homeController'>
<div class="text-center">
<h1>Please sign in</h1>
</div>
<div class="row">
<div class="col-sm-6 col-sm-offset-3">
<div id="messages" class="alert alert-info" data-ng-show="messages" data-ng-bind="messages"></div>
<input ng-model="user.username" class="form-control" placeholder="Username" required="" autofocus="">
<input type="password" ng-model="user.password" class="form-control" placeholder="Password" required="">
<a ng-disabled="!(user.username && user.password)" type="submit" class="btn btn-lg btn-primary center-block" ng-click="toUserPage(user)">Submit</a>
</div>
</div>
</div>
</div>