forked from binvant/MakeMyCareer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrecruitersignup.html
41 lines (33 loc) · 1.42 KB
/
recruitersignup.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
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Recruiter Sign Up Form</title>
<link rel="stylesheet" href="https://codepen.io/gymratpacks/pen/VKzBEp#0">
<link href='https://fonts.googleapis.com/css?family=Nunito:400,300' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="style.css">
<script src="script-recruiter.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
</head>
<body>
<div class="row">
<form id="file-form">
<div class="col-md-12 widthcss">
<h1> Sign Up </h1>
<fieldset>
<legend>Your Basic Info</legend>
<label for="name">Name:</label>
<input type="text" id="name" name="user_name">
<label for="email">Email:</label>
<input type="email" id="mail" name="user_email">
<label for="password">Password:</label>
<input type="password" id="password" name="user_password">
<label for="password">Confirm Password:</label>
<input type="password" id="confirmpassword" name="user_password">
</fieldset>
<button type="button" onclick="signuprecruiter()">Sign Up</button>
</div>
</form>
</div>
</body>
</html>