-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (49 loc) · 1.91 KB
/
index.html
File metadata and controls
56 lines (49 loc) · 1.91 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w=="
crossorigin="anonymous" />
<link rel="stylesheet" href="./style.css">
<title>Code - n - Hunt Login page</title>
<script src="script.js"></script>
</head>
<body>
<video autoplay muted loop id="myVideo">
<source src="vid2.mp4" type="video/mp4">
Your browser does not support HTML5 video.
</video>
<div id="box">
<div class="container">
<div class="upper">
<div class="logo">
<a href="#">
<img src="./logo2.png" class="img-logo" />
</a>
</div>
<div class="login-div">
<form class="login">
<h1>Log In</h1>
<div class="input-text">
<input type="text" id="username" name="email" placeholder="Username" />
</div>
<div class="input-text">
<input type="password" id="password" name="password" placeholder="Password" />
</div>
<br>
<br>
<div>
<button class="signin-button" onclick="validate()" type="button">Log In</button>
</div>
<br>
<br>
<br>
<p class="r1 hide" id="riddle1">your Riddle will come here</p>
</form>
</div>
</div>
</div>
</div>
</body>
</html>