fixed login error style

This commit is contained in:
Brad Rydzewski 2015-05-26 13:44:44 -07:00
parent c2bdaee40e
commit a3784a2589
2 changed files with 11 additions and 18 deletions

View file

@ -55,14 +55,13 @@
}
</style>
<div ng-switch="error">
<div ng-switch-when="internal_error">Oops. There was an unexpected error. Please try again.</div>
<div ng-switch-when="user_not_found">There was an error authorizing your account.</div>
<div ng-switch-when="access_denied_org">Login is restricted to approved organization members only</div>
<div ng-switch-when="access_denied">Self-registration is disabled. Please contact the system admin to grant access.</div>
</div>
<a href="/authorize" target="_self" class="box">
<div class="logo"></div>
<div ng-switch="error" class="alert alert-error" ng-if="error">
<div ng-switch-when="internal_error">Oops. There was an unexpected error. Please try again.</div>
<div ng-switch-when="user_not_found">There was an error authorizing your account.</div>
<div ng-switch-when="access_denied_org">Login is restricted to approved organization members only</div>
<div ng-switch-when="access_denied">Self-registration is disabled. Please contact the system admin to grant access.</div>
</div>
<div class="login">Login</div>
</a>

View file

@ -18,37 +18,31 @@
<table border="1">
<thead>
<tr>
<th></th>
<th>Login</th>
<th>Full Name</th>
<th>Created</th>
<th>Updated</th>
<th>Email</th>
<th>Site Admin</th>
<th>Gravatar</th>
<th>Admin</th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
<tr ng-repeat="user in users">
<td><img ng-src="{{ user.gravatar_id | gravatar }}" /></td>
<td>{{ user.login }}</td>
<td>{{ user.name }}</td>
<td>{{ user.created_at | fromNow }}</td>
<td>{{ user.updated_at | fromNow }}</td>
<td>{{ user.email }}</td>
<td>{{ !!user.admin }}</td>
<td><img ng-src="{{ user.gravatar_id | gravatar }}" /></td>
<td><button ng-click="toggle(user)">toggle admin</button></td>
<td><button ng-click="remove(user)">delete</button></td>
</tr>
</tbody>
</table>
</section>
<section>
<form>
<input type="text" ng-model="login" />
<button ng-click="add(login)">Add</button>
</form>
</section>
</article>
</article>