forked from BKrishna21/CodeBits_7_rishikeshraj
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlog_in.html
More file actions
28 lines (26 loc) · 722 Bytes
/
log_in.html
File metadata and controls
28 lines (26 loc) · 722 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Cross Platform</title>
<link rel="stylesheet" href="cross.css">
</head>
<body>
<div class="container">
<div class="content">
<div class="hd">
<p>LogIn </p>
</div>
<form action="tournament.html">
<input type="email" placeholder="Your E-mail" required><br>
<input type="password" placeholder="Your Password" id="mypwd" required><br>
<p> <a href="forget.html">Forget Password?</a></p>
<div class="button">
<button>Submit</button>
</div>
</form>
</div>
</div>
<script>
</script>
</body>
</html>