-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.html
73 lines (67 loc) · 2.66 KB
/
signup.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
72
73
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=yes" />
<meta name="description" content="login-page" />
<meta name="author" content="" />
<title>Sign-up-social-hub</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-zCbKRCUGaJDkqS1kPbPd7TveP5iyJE0EjAuZQTgFLD2ylzuqKfdKlfG/eSrtxUkn" crossorigin="anonymous">
<!-- bootstrap java script -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.slim.min.js"
integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous">
</script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"
integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous">
</script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-VHvPCCyXqtD5DqJeNxl2dtTyhF78xXNXdkwX1CZeRusQfRKp+tA7hAShOK/B/fQ2" crossorigin="anonymous">
</script>
<link rel="stylesheet" href="style sheets/signup.css" />
<!-- fontawesome -->
<script src="https://kit.fontawesome.com/4cacfa305a.js" crossorigin="anonymous"></script>
</head>
<body>
<section>
<div class="logo">
<p id="name">Social-Hub
<i class="fa-solid fa-comments fa-2x" id="icon"></i></p>
</div>
<br><br>
<form>
<div>
<p class="titles">Name:</p>
<label for="username">
<input type="text" id="username" name="login-page" placeholder="Enter your Name" required class="input-box"
required>
</label>
</div>
<br>
<div>
<p class="titles">Email:</p>
<label for="email">
<input type="email" id="email" name="login-page" placeholder="Email address" required class="input-box"
required>
</label>
</div>
<div><br>
<p class="titles">Password:</p>
<label for="pass">
<input type="password" id="pass" name="login-page" placeholder="Password" required class="input-box" required>
</label>
</div>
<div><br>
<p class="titles">Confirm Password:</p>
<label for="pass">
<input type="password" id="pass" name="login-page" placeholder="Confirm Password" required class="input-box"
required>
</label>
</div>
<br>
<div><br>
<button type="submit" class="btn btn-dark btn-outline-light"><a href="index.html">Register</a></button>
</div>
</form>
<p id="copyright">©Social-Hub Inc. 2022</p>
</body>
</html>