rust-tcp-server/public/login.html

24 lines
807 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Login</title>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<div class="container">
<h1>Login</h1>
<form>
<label for="username">Username:</label>
<input type="text" id="username" name="username" required>
<br>
<label for="password">Password:</label>
<input type="password" id="password" name="password" required>
<br>
<button type="submit">Login</button>
</form>
<p>Don't have an account? <a href="signup.html">Sign up</a></p>
<p>Forgot password? <a href="forgotpassword.html">Reset password</a></p>
<button onclick="window.location.href='index.html'">Go to Index</button>
</div>
</body>
</html>