-
Notifications
You must be signed in to change notification settings - Fork 2
/
sign-up.html
71 lines (46 loc) · 2.68 KB
/
sign-up.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
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vyaw-say</title>
<link rel="stylesheet" type="text/css" href="./static/css/sign-up.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<!-- <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<!-- fonts -->
<link href="https://fonts.googleapis.com/css2?family=Crimson+Text:wght@700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Lora:ital,wght@1,500&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display+SC:wght@700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap" rel="stylesheet">
</head>
<body class="d-flex flex-column">
<!------------------ Navigation Bar-------------------->
<div class="nav-bar">
<a class="active" href="#"> <i class="brand">Vyaw-say</i> </a>
<a href="#"> <i class="fa fa-search"></i> </a>
<a href="#"> <i class="fa fa-envelope"></i> </a>
<a href="#"> <i class="fa fa-globe"></i> </a>
<a href="#"> <i class="fa fa-user-circle-o"></i> </a>
</div>
<script src="https://kit.fontawesome.com/dadac063ad.js" crossorigin="anonymous"></script>
<h1 class="page-head"># Page</h1>
<div class="sign-panel">
<form class="login-form" method="get" action="./#-success.html">
<label>Your Name</label><br>
<input type="text" class="name" placeholder="Name" required><br>
<label>Username</label><br>
<input type="text" class="username" placeholder="Username" required><br>
<label>Email id</label><br>
<input type="text" class="email" placeholder="email" required><br>
<label>Password</label><br>
<input type="password" class="password" placeholder="Password" required><br>
<label>Confirm Password</label><br>
<input type="password" class="c-password" placeholder="Confirm Password" required><br><br>
<input type="button" class="btn btn-primary sign-btn" value="Sign me up"><br><br>
</form>
</div>
<footer>
© Team: <a href="our-team.html">Tech-Jan</a>, Webster@Avishkar-2020, MNNIT Allahabad
</footer>
</body>
</html>