3words/views/login.html

17 lines
653 B
HTML

{include="layout"}
{include="navbar"}
<div class="container">
<form role="form" method="POST">
<div class="form-group">
<label for="InputUsername">Username</label>
<input type="text" class="form-control" id="InputUsername" name="user_name" placeholder="Enter username">
</div>
<div class="form-group">
<label for="InputPassword">Password</label>
<input type="password" class="form-control" id="InputUsername" name="password" placeholder="Enter password">
</div>
<input type="hidden" name="login">
<button type="submit" class="btn btn-default btn-block">Login</button>
</form>
</div>
{include="footer"}