thelounge/client/views/windows/sign_in.tpl

18 lines
777 B
Smarty
Raw Normal View History

2017-11-11 19:33:21 +01:00
<form class="container" method="post" action="">
2018-03-11 22:20:51 +01:00
<img src="img/logo-vertical-transparent-bg.svg" class="logo" alt="The Lounge" width="256" height="170">
<img src="img/logo-vertical-transparent-bg-inverted.svg" class="logo-inverted" alt="The Lounge" width="256" height="170">
<label>Username</label>
<input class="input" type="text" name="user" autocapitalize="none" autocorrect="off" autocomplete="username" required autofocus>
2018-03-11 22:20:51 +01:00
<div class="password-container">
<label>Password</label>
<input class="input" type="password" name="password" autocapitalize="none" autocorrect="off" autocomplete="current-password" required>
{{> ../reveal-password}}
</div>
2018-03-11 22:20:51 +01:00
<div class="error">Authentication failed.</div>
<button type="submit" class="btn">Sign in</button>
2017-11-04 18:11:20 +01:00
</form>