ev-project
Version:
30 lines (25 loc) • 768 B
HTML
<html lang="en"><head>
<meta charset="UTF-8">
<title>Login | EV Finder</title>
<link rel="stylesheet" href="login.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-
awesome/6.7.2/css/all.min.css">
</head>
<body>
<div class="login-container">
<h2>Login to Continue</h2>
<button class="google-btn">
<i class="fab fa-google"></i> Continue with Google
</button>
<div class="divider"><span>or</span></div>
<form action="#">
<input type="email" placeholder="Email" required="">
<input type="password" placeholder="Password" required="">
<button type="submit">Login</button>
</form>
<p class="signup-text">Don’t have an account? <a href="signup.html">Sign
up here</a></p>
</div>
</body>
</html>