-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
51 lines (47 loc) · 2.65 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
<!DOCTYPE html>
<body>
<link rel="stylesheet" href="signup.css">
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<body id="login">
<nav class="navigation">
<div class="logo">
<h2 ><a href="index.html" id="logo-link">Drive 2 Destiny</a></h2>
</div>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="internship.html">Internship</a></li>
<li><a href="placement.html">Placements</a></li>
<li><a href="signup.html">Sign up</a></li>
</ul>
</nav>
<div class="sign">
<div class = "wrapper">
<form >
<h1 class="sign-up-text">Sign up</h1>
<div class="input-box"><input id="name" type="text" placeholder="Name" required>
</div>
<div class="input-box"><input id="email" type="text" placeholder="Email" required>
<i class='bx bx-envelope' ></i>
</div>
<div class="input-box"><input id="username" type="text" placeholder="Username" required>
<i class='bx bxs-user'></i>
</div>
<div class="input-box"> <input id="password" type="password" placeholder="password" required>
<i class='bx bxs-lock-alt' ></i>
</div>
<h3 align="center" class="join">Join as a </h3>
<button class="btn new" onclick="handleSignup(event, 0)" >Job Finder</button>
<button class="btn new" onclick="handleSignup(event, 1)">Employer </button>
<br>
<br>
</form>
<p id="error-text"></p>
<p>Already a member?<a href="index.html"> Login</a></p>
</div>
</div>
<script src="script.js"></script>
</body>
</html>