-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (30 loc) · 1.14 KB
/
index.html
File metadata and controls
32 lines (30 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>EduFlow - Login</title>
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="logo2.png" type="image/x-icon">
</head>
<body>
<div class="signin-container">
<form id="signin-form" align="center">
<h2>Sign In</h2><br>
<!-- <label for="name">Name</label>
<input type="text" id="name" name="name" required><br><br>
-->
<label for="email">Email</label>
<input type="email" id="email" name="email" required><br><br><br>
<label for="password">Password</label>
<input type="password" id="password" name="password" required><br><br><br>
<!-- <div class="button1"> -->
<button type="submit" href="">Sign In</button><br><br>
<hr>
<p>
Create a new account.? <a href="signup.html">Sign-Up</a></p>
</form>
</div>
<!-- <script src="index.js"></script> -->
</body>
</html>