-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
60 lines (57 loc) · 2.96 KB
/
index.html
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
57
58
59
60
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width initial-scale=1.0">
<title>Signup Page</title>
<script src="https://use.fontawesome.com/2f399a138d.js"></script>
<link rel="stylesheet" href="./stylesheets/main.css">
<link href="https://fonts.googleapis.com/css2?family=Krona+One&display=swap" rel="stylesheet">
</head>
<body>
<div class="timeline">
<div class="squares"></div>
<div class="squares"></div>
<div class="squares"></div>
<div class="line"></div>
</div>
<br>
<div class="carousel-container">
<i class="fa fa-arrow-right" aria-hidden="true" id="next"></i>
<i class="fa fa-arrow-left" aria-hidden="true" id="prev"></i>
<form action="#" class="carousel-slide">
<div class="slide">
<h1>PERSONAL INFO:</h1>
<label for="firstname">FIRSTNAME:</label>
<input type="text" placeholder="Firstname" name="firstname">
<label for="lastname">LASTNAME:</label>
<input type="text" placeholder="lastname" name="lastname">
<label for="country">COUNTRY:</label>
<input type="text" placeholder="country" name="country">
<label for="regilion">RELIGION:</label>
<input type="text" id="religion" placeholder="religion" name="religion">
</div>
<div class="slide">
<h1>CONTACT INFO:</h1>
<label for="email">EMAIL-ID:</label>
<input type="email" placeholder="[email protected]" name="email">
<label for="phoneNum">PHONE:</label>
<input type="text" placeholder="e.g-8944XXXXXX" name="phoneNum">
<label for="githublink">GITHUB-ACCOUNT-LINK:</label>
<input type="text" placeholder="githublink" name="githublink">
<label for="codechefusername">CODECHEF(optional):</label>
<input type="text" placeholder="codechef-username" name="codechefUsername">
</div>
<div class="slide">
<h1>LOGIN INFO:</h1>
<label for="username">USERNAME:</label>
<input type="username" id="username" placeholder="username" name="username">
<label for="password">PASSWORD:</label>
<input type="password" id="password" placeholder="password" name="password">
<input type="submit" class="btn">
</div>
</form>
</div>
<script src="./js/main.js"></script>
</body>
</html>