-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathaddcandidate.html
More file actions
150 lines (132 loc) · 5.96 KB
/
addcandidate.html
File metadata and controls
150 lines (132 loc) · 5.96 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<!-- Starter template -->
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=width-device, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="stylesheet" href="css/custom.css">
<script src="https://kit.fontawesome.com/74bc13a396.js" crossorigin="anonymous"></script>
<link rel="shortcut icon" type="image/png" href="image/hlogo.jpg"/>
<title>Human Focus About Us</title>
</head>
<!-- Navbar section -->
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<a class="navbar-brand" href="/">Human focus</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<li class="nav-item active">
<a class="nav-link" href="index.html">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item active">
<a class="nav-link" href="stationaries.html">Services</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="blogindex.html">Blog</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="about.html">About</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="contact.html">Contact</a>
</li>
<li class="nav-item homepage-section">
<a class="btn btn-light btn-sm" href="sign.html" role="button">Log In</a>
</li>
<li class="nav-item">
<a class="btn btn-primary btn-sm" href="update.html" role="button">Sign Up</a>
</li>
</ul>
</div>
</nav>
<div class="form">
<div class="col-sm-4">
<div class="..." style="width: 80rem;">
<div class="container card-section">
<h2>Add candidate details</h2><br>
<form>
<div class="form-group row">
<label for="inputPassword" class="col-sm-2 col-form-label">First name</label>
<div class="col-sm-5">
<input type="text" class="form-control" placeholder="First name">
</div>
</div>
<div class="form-group row">
<label for="inputPassword" class="col-sm-2 col-form-label">Last name</label>
<div class="col-sm-5">
<input type="text" class="form-control" placeholder="Last name">
</div>
</div>
<div class="form-group row">
<label for="inputPassword" class="col-sm-2 col-form-label">Stream</label>
<div class="col-sm-5">
<input type="text" class="form-control" placeholder="Stream">
</div>
</div>
<div class="form-group row">
<label for="inputPassword" class="col-sm-2 col-form-label">Email</label>
<div class="col-sm-5">
<input type="text" class="form-control" placeholder="Email address">
</div>
</div>
<div class="form-group row">
<label for="inputPassword" class="col-sm-2 col-form-label">Phone number</label>
<div class="col-sm-5">
<input type="text" class="form-control" placeholder="Phone number">
</div>
</div>
<div class="form-group row">
<label for="inputPassword" class="col-sm-2 col-form-label">Address</label>
<div class="col-sm-5">
<input type="text" class="form-control" placeholder="Address">
</div>
</div>
<div class="form-group row">
<label for="inputPassword" class="col-sm-2 col-form-label">Date of birth</label>
<div class="col-sm-5">
<input type="date" class="form-control" placeholder="Date of birth">
</div>
</div>
<!-- Button trigger modal -->
<div class="..." style="width: 40rem;">
<button type="button" class="btn btn-secondary btn-lg btn-block" data-toggle="modal" data-target="#exampleModal">Submit</button>
</div>
<!-- Modal -->
<div class="modal fade" id="exampleModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">Congrajulations.....</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
Successfully submitted.
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
<a href="addcandidate.html">
<button type="button" class="btn btn-primary">Save changes</button></a>
</div>
</div>
</div>
</div>
</form>
</div>
</div><br><br>
</div>
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
</body>
</html>