1
0
mirror of https://github.com/kataras/iris.git synced 2026-01-05 11:17:03 +00:00
Files
kararas_iris/_examples/structuring/login-mvc-single-responsibility-package/views/user/login.html
kataras 666bcacf20 Update to version 8.5.5
Former-commit-id: b5be58709f17758a8df3ebc99270b97ccd8b18f2
2017-11-02 05:50:56 +02:00

11 lines
391 B
HTML

<form action="/user/login" method="POST">
<div class="container">
<label><b>Username</b></label>
<input type="text" placeholder="Enter Username" name="username" required>
<label><b>Password</b></label>
<input type="password" placeholder="Enter Password" name="password" required>
<button type="submit">Login</button>
</div>
</form>