bansho/app/components/authentication/authentication.html
Alexandre Viau 48b9f5c817 Improve login and logout + replaced tabs by spaces
Change-Id: I15ea3a23024a8c992b56429a5352746c9aa598bc
2015-05-15 16:34:49 -04:00

32 lines
1.1 KiB
HTML

<div class="centered">
<h1 class="bansho-title">Bansho</h1>
<p>Web client for Surveil</p>
<h2>Login</h2>
<br>
<form name="loginForm"
ng-controller="LoginController"
ng-submit="login(credentials)" novalidate>
<div class="form-group">
<label for="username" class="label">Username:</label>
<input type="text" id="username" class="form-control field"
ng-model="credentials.auth.passwordCredentials.username">
</div>
<div class="form-group">
<label for="password" class="label">Password:</label>
<input type="password" class="form-control field" id="password"
ng-model="credentials.auth.passwordCredentials.password">
</div>
<div class="form-group">
<label for="tenantName" class="label">Tenant Name:</label>
<input type="text" id="tenant-name"class="form-control field"
ng-model="credentials.auth.tenantName">
</div>
<button type="submit">Login</button>
</form>
</div>