-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathonline-registration.php
115 lines (89 loc) · 4.55 KB
/
online-registration.php
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
<!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>অনলাইন নিবন্ধন - জাবিইপা</title>
<link rel="shortcut icon" href="image/juil-logo.ico" type="image/x-icon">
<link rel="stylesheet" href="https://unpkg.com/swiper@7/swiper-bundle.min.css" />
<!-- font awesome cdn link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<script src="https://kit.fontawesome.com/899adf5c9e.js" crossorigin="anonymous"></script>
<!-- custom css file link -->
<link rel="stylesheet" href="css/style.css">
<meta name="keywords" content="জাবিইপা" />
<meta name="description" content="জাহাঙ্গীরনগর বিশ্ববিদ্যালয় ইসলামি পাঠাগার" />
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="হোম - জাবিইপা">
<meta name="twitter:description" content="জাহাঙ্গীরনগর বিশ্ববিদ্যালয় ইসলামি পাঠাগার">
<meta property="og:title" content="হোম - জাবিইপা" />
<meta property="og:site_name" content="জাবিইপা" />
<meta property="og:description" content="জাহাঙ্গীরনগর বিশ্ববিদ্যালয় ইসলামি পাঠাগার" />
<meta property="og:url" content="https://www.juislamiclibrary.com/" />
<meta property="og:image" content="" />
<script type="text/javascript">
function disableselect(e) {
return false
}
function reEnable() {
return true
}
//if IE4+
document.onselectstart = new Function("return false")
document.oncontextmenu = new Function("return false")
//if NS6
if (window.sidebar) {
document.onmousedown = disableselect
document.onclick = reEnable
}
</script>
</head>
<body>
<!-- header section starts -->
<?php
include "header.php";
?>
<!-- header section ends -->
<div class="online-registration">
<div class="heading">
<h3>নতুন সদস্য নিবন্ধন</h3>
</div>
</div>
<section class="online-registration">
<form action="regconfirm.php" method="post">
<h3 class="cnt">Registration Form</h3>
<label for="name">Your Name: </label>
<input type="text" name="name" required placeholder="Full name" class="box">
<label for="email">Your Email: </label>
<input type="email" name="email" required placeholder="email" class="box">
<label for="phone">Your Phone Number: </label>
<input type="number" name="phone" required placeholder="phone number" class="box">
<label for="department">Your Department: </label>
<input type="text" name="department" required placeholder="department" class="box">
<label for="batch">Your Batch: </label>
<input type="text" name="batch" required placeholder="batch" class="box">
<label for="session">Your Session: </label>
<input type="text" name="session" required placeholder="session" class="box">
<label for="hall">Your Hall Name: </label>
<input type="text" name="hall" required placeholder="hall" class="box">
<label for="bgroup">Your Blood Group: </label>
<input type="text" name="bgroup" placeholder="blood group" class="box">
<label for="gender">Your Gender: </label>
<select name="gender" class="box">
<option value="none" selected>Choose Gender</option>
<option value="male">Male</option>
<option value="female">Female</option>
</select>
<label for="address">Your Permanent Address: </label>
<textarea name="address" class="box" required placeholder="village, post-office, upazila, district" id="" cols="30" rows="10"></textarea>
<input type="submit" value="Send" name="send" class="btn">
</form>
</section>
<!-- footer section starts -->
<?php
include "footer.php";
?>
<!-- footer section ends -->
</body>
</html>