30 lines
891 B
HTML
30 lines
891 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container">
|
|
<form action="" method="post">
|
|
<div class="form-container ">
|
|
<label for="uname"><b>Username</b></label>
|
|
<input type="text" placeholder="Enter Username" name="uname" required>
|
|
|
|
<label for="psw"><b>Password</b></label>
|
|
<input type="password" placeholder="Enter Password" name="psw" required>
|
|
|
|
<button type="submit">Login</button>
|
|
<div class="loginText">
|
|
<label>
|
|
Already have an account? <a href="../login/login.html">Login</a>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
<link rel="stylesheet" href="register.css">
|
|
|
|
</html> |