3words/views/login.html

20 lines
749 B
HTML

{include="layout"}
{include="navbar"}
<div class="container">
{if="$message"}
<div class="alert alert-info">{$message}</div>
{/if}
<form role="form" method="POST" action="ucp.php?page=login">
<div class="form-group">
<label for="InputUsername">Username</label>
<input type="text" class="form-control" id="InputUsername" name="username" 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"}