login form
This commit is contained in:
parent
232b10f393
commit
34f9431345
1 changed files with 23 additions and 0 deletions
23
views/login.hbs
Normal file
23
views/login.hbs
Normal file
|
@ -0,0 +1,23 @@
|
|||
<form action="action_page.php">
|
||||
<div class="imgcontainer">
|
||||
<img src="img_avatar2.png" alt="Avatar" class="avatar">
|
||||
</div>
|
||||
|
||||
<div class="container">
|
||||
<label for="uname"><b>Nutzername</b></label>
|
||||
<input type="text" placeholder="Enter Username" name="uname" required>
|
||||
|
||||
<label for="psw"><b>Passwort</b></label>
|
||||
<input type="password" placeholder="Enter Password" name="psw" required>
|
||||
|
||||
<button type="submit">Login</button>
|
||||
<label>
|
||||
<input type="checkbox" checked="checked" name="remember"> Remember me
|
||||
</label>
|
||||
</div>
|
||||
|
||||
<div class="container" style="background-color:#f1f1f1">
|
||||
<button type="button" class="cancelbtn">Cancel</button>
|
||||
<span class="psw">Forgot <a href="#">Passwort??</a></span>
|
||||
</div>
|
||||
</form>
|
Reference in a new issue