Archived
1
0
This repository has been archived on 2025-09-19. You can view files and clone it, but cannot push or open issues or pull requests.
Files
3words/views/login.html
2014-08-18 01:24:46 +02:00

12 lines
541 B
HTML

<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>