Skip to content
Snippets Groups Projects
Commit afd9f0bb authored by Jesus Galaz's avatar Jesus Galaz
Browse files

Fixing login design

parent 64f87909
No related branches found
No related tags found
1 merge request!5User authentication implemented
Pipeline #15662 passed
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Login</title>
<link rel="stylesheet" href="./css/login.css" />
</head>
<body>
<div class="login-container">
<h2>Login</h2>
<form id="login-form" action="login.php" method="POST">
<input
type="text"
class="uname"
name="username"
placeholder="Username"
required
/>
<input
type="password"
class="pass"
name="password"
placeholder="Password"
required
/>
<button type="submit">Login</button>
</form>
<span class="error_text"></span>
<div class="success_message">
Login successful! Redirecting to your to-do list...
</div>
<div class="register-link">
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Login</title>
<link rel="stylesheet" href="./css/login.css" />
</head>
......@@ -76,8 +39,3 @@
<script src="./js/auth.js"></script>
</body>
</html>
Don't have an account? <a href="register.html">Create one</a>.
</div>
</div>
</body>
</html>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment