-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathregistrationForm.html
More file actions
57 lines (53 loc) · 2.25 KB
/
registrationForm.html
File metadata and controls
57 lines (53 loc) · 2.25 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>RMS</title>
<link type="text/css" href="style.css" rel="stylesheet">
</head>
<body>
<div id="header">
<div id="logo">
<!-- <img src="assets/logo.jpg" height="100px" width="120px"> -->
<svg xmlns="http://www.w3.org/2000/svg" width="150" height="100" fill="#000000" viewBox="0 0 256 256"><rect width="256" height="256" fill="none"></rect><line x1="24" y1="216" x2="168" y2="216" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="16"></line><path d="M16.9,140.4l37.7,35.3a32,32,0,0,0,38,4.3L244,92,225.4,69.2a32,32,0,0,0-41-7.3L140,88,80,68,63.5,75.1a8,8,0,0,0-2.2,13.3L92,116,64,132,36,120l-16.8,7.2A8,8,0,0,0,16.9,140.4Z" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="16"></path></svg>
</div>
<div id="logoHeading">
<center>
<h1>Recruitment Management System</h1>
</center>
</div>
</div>
<div id="nav">
<ul id="navMenu">
<li><a href="index.php">Home</a></li>
<li><a href="about.php">AboutUs</a></li>
<li><a href="contact.php">ContactUs</a></li>
<li><a href="login.php">SignIn</a></li>
<li><a href="#">Logout</a></li>
</ul>
</div>
<div id="container">
<h2>Job Registration Form</h2>
<div class="cord">
<form class="register_form">
<div class="col">
<div class="col1">
<label>First Name</label>
<input type="text">
</div>
<div class="col2">
<label>Last Name</label>
<input type="text">
</div>
<div class="col2">
<label>Email:</label>
<input type="email" required>
</div>
</div>
</form>
</div>
</div>
</body>
</html>