forked from Lokesh-Anand/HospitalManagement
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreg.php
More file actions
128 lines (96 loc) · 5.16 KB
/
reg.php
File metadata and controls
128 lines (96 loc) · 5.16 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
<!DOCTYPE html>
<html>
<head>
<title>RECRUITMENT FORM</title>
<link href="assets1/css/bootstrap.css" rel="stylesheet" />
<!-- FONTAWESOME STYLE CSS -->
<link href="assets1/css/font-awesome.min.css" rel="stylesheet" />
<!-- CUSTOM STYLE CSS -->
<link href="assets1/css/style.css" rel="stylesheet" />
<!-- GOOGLE FONT -->
<link href='https://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css' />
<style>
body {
background-image: url("z.jpg");
background-repeat: no-repeat;
background-position: bottom left;
background-position: 0px 140px;
}
</style>
</head>
<body>
<div class="container">
<div class="row text-center pad-top ">
<div class="col-md-12">
<h2>RECRUITMENT FORM</h2>
</div>
</div>
<div class="row pad-top">
<div class="col-md-4 col-md-offset-4 col-sm-6 col-sm-offset-3 col-xs-10 col-xs-offset-1">
<div class="panel panel-default">
<div class="panel-heading">
<strong> Please Give your Details </strong>
</div>
<div class="panel-body">
<form role="form" action="sendreg.php" method="post" enctype="multipart/form-data">
<br/>
<div class="form-group input-group">
<span class="input-group-addon"><b>N</b></span>
<input type="text" class="form-control" placeholder="Your Name" name="new_name" required/>
</div>
<div class="form-group input-group">
<span class="input-group-addon"><b>G</b></span>
<select id="drop" class="form-control" name="new_gender" required>
<option>Gender</option>
<option>Male</option>
<option>Female</option>
</select>
</div>
<div class="form-group input-group">
<span class="input-group-addon"><b>A</b></span>
<input type="number" class="form-control" placeholder="Your Age" name="new_age" required/>
</div>
<div class="form-group input-group">
<span class="input-group-addon"><i class="fa fa-circle-o-notch" ></i></span>
<input type="file" class="form-control" name="new_pic" value="upload resume"required/>
</div>
<div class="form-group input-group">
<span class="input-group-addon"><b>A</b></span>
<input type="text" class="form-control" placeholder="Your Address" name="new_address" required/>
</div>
<div class="form-group input-group">
<span class="input-group-addon"><b>@</b></span>
<input type="text" class="form-control" placeholder="Your Email" name="new_mail" required/>
</div>
<div class="form-group input-group">
<span class="input-group-addon"><i class="fa fa-circle-o-notch" ></i></span>
<select id="drop" class="form-control" name="new_role" required>
<option>Role</option>
<option>Doctor</option>
<option>Nurse</option>
<option>Pharmacist</option>
<option>Laboratorist</option>
</select>
</div>
<div class="form-group input-group">
<span class="input-group-addon"><b>Q</b></span>
<input type="text" class="form-control" placeholder="Your Qualification" name="new_qual" required/>
</div>
<div class="form-group input-group">
<span class="input-group-addon"><b>C</b></span>
<input type="text" class="form-control" placeholder="Your Contact Number" name="new_con" required/>
</div>
<input type="submit" class="btn btn-success " value="APPLY">
</form>
</div>
</div>
</div>
</div>
</div>
<!-- JAVASCRIPT FILES PLACED AT THE BOTTOM TO REDUCE THE LOADING TIME -->
<!-- CORE JQUERY -->
<script src="assets1/plugins/jquery-1.10.2.js"></script>
<!-- BOOTSTRAP SCRIPTS -->
<script src="assets1/plugins/bootstrap.js"></script>
</body>
</html>