-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
118 lines (112 loc) · 6.17 KB
/
index.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta keyword="registration page">
<title>Registration form</title>
<link rel-"icon" href="zine_logo.jpg" type="image/jpg" sizes="16x16">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.0/css/all.css" integrity="sha384-lZN37f5QGtY3VHgisS14W3ExzMWZxybE1SJSEsQp9S+oqd12jhcu+A56Ebc1zFSJ" crossorigin="anonymous">
<!-- Font Icon -->
<link rel="stylesheet" href="material-design-iconic-font.min.css">
<!-- Main css -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="main">
<div class="container">
<div class="signup-content">
<div class="signup-img">
<img src="image1.png" alt="">
</div>
<div class="signup-form">
<form method="POST" class="register-form" id="register-form">
<center>
<img src="robot-wallpaper-2.jpg" alt="" width="60%" height="60%">
<h1>ZINE WORKSHOP REGISTRATION</h1>
</center>
<div class="form-row">
<div class="form-group">
<label for="first_name">First Name:</label>
<input type="text" name="first_name" id="first_name" required/>
</div>
<div class="form-group">
<label for="last_name">Last Name:</label>
<input type="text" name="last_name" id="last_name" required/>
</div>
</div>
<div class="form-group">
<label for="college_id">College ID:</label>
<input type="text" name="college_id" id="college_id" required/>
</div>
<div class="form-group">
<label for="mobile_number">Mobile Number:</label>
<input type="text" name="mobile_number" id="mobile_number" required/>
</div>
<div class="form-group">
<label for="email">Email ID:</label>
<input type="email" name="email" id="email" required/>
</div>
<div class="form-radio">
<label for="college_name" class="radio-label">College:</label>
<div class="form-radio-item">
<input type="radio" name="college_name" id="mnit" checked>
<label for="mnit">MNIT</label>
<span class="check"></span>
</div>
<div class="form-radio-item">
<input type="radio" name="college_name" id="iitk">
<label for="iitk">IIITK</label>
<span class="check"></span>
</div>
<div class="form-radio-item">
<input type="radio" name="college_name" id="nitu">
<label for="nitu">NITU</label>
<span class="check"></span>
</div>
</div>
<div class="form-radio">
<label for="hostel" class="radio-label">Hosteler:</label>
<div class="form-radio-item">
<input type="radio" name="hostel" id="yes" checked>
<label for="yes">Yes</label>
<span class="check"></span>
</div>
<div class="form-radio-item">
<input type="radio" name="hostel" id="no">
<label for="no">No</label>
<span class="check"></span>
</div>
</div>
<div class="form-group">
<label for="branch">Branch:</label>
<div class="form-select">
<select name="branch" id="branch">
<option value=""></option>
<option value="CSE">Computer Science and Engineering</option>
<option value="ECE">Electronics and Communication Engineering</option>
<option value="EE">Electrical Engineering</option>
<option value="ME">Mechanical Engineering</option>
<option value="CE">Civil Engineering</option>
<option value="CHE">Chemical Engineering</option>
<option value="MT">Mettalurgical and Materials Engineering</option>
<option value="AR">Architecture</option>
</select>
<span class="select-icon"><i class="fas fa-caret-down"></i></span>
</div>
</div>
<div class="form-submit">
<input type="submit" value="Reset All" class="submit" name="reset" id="reset" />
<input type="submit" value="Submit Form" class="submit" name="submit" id="submit" />
</div>
</form>
</div>
</div>
</div>
</div>
<!-- JS -->
<script src="jquery.min.js"></script>
<script src="main.js"></script>
</body>
</html>