You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
YOLO/login.html

24 lines
897 B

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="login.css">
</head>
<body>
<div class="login-container">
<h1>Login</h1>
<form action="post">
<div class="details-container">
<label for="email">Email:</label><br>
<input type="email" id="email" name="email" placeholder="example@gmail.com"><br>
<label for="password">Password:</label><br>
<input type="password" name="password" id="password"><br>
<input type="submit" name="login" id="login" value="Login"><br>
<p class="text">Don't Have an account? <a href="createAccount.html">Create an Account</a></p>
</div>
</form>
</div>
</body>
</html>