AutoCallManu/www/login.html

32 lines
1.0 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title></title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="/assets/css/forms/login.css" rel="stylesheet">
</head>
<body>
<NAVBAR>
<form class="modal-content animate" action="/login" method="post">
<div class="container">
<label for="uname"><b>Username</b></label>
<input type="text" placeholder="Enter Username" name="username" required>
<label for="psw"><b>Password</b></label>
<input type="password" placeholder="Enter Password" name="password" 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">
<a href="/"><button type="button" class="cancelbtn">Cancel</button></a>
<!--<span class="psw">Forgot <a href="#">password?</a></span>-->
</div>
</form>
</body>
</html>