-
Notifications
You must be signed in to change notification settings - Fork 3
/
hack.html
105 lines (86 loc) · 4.49 KB
/
hack.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="shortcut icon" href="formassets/nav-logo.png" type="image/x-icon">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="formassets/bootstrap.css">
<link rel="stylesheet" href="formassets/style.css">
<title>Hack 2020</title>
<script
src="https://code.jquery.com/jquery-3.4.1.js"
integrity="sha256-WpOohJOqMqqyKL9FccASB9O0KwACQJpFTUBLTYOVvVU="
crossorigin="anonymous">
</script>
</head>
<body>
<div class="navi">
<div class="d-flex flex-g row-1">
<a class="navbar-brand" href="https://tinkerhub.org/">
<img src="formassets/nav-logo.png" width="30" height="30" class="d-inline-block align-top" alt="Visit Tinkerhub.org">
Tinkerhub</a>
</div>
</div>
<div class="container">
<h1>TinkerHub HactoberFest</h1>
<form id="myForm">
<div class="row">
<div class="col-sm">
<label for="Name">Name:<span>*</span></label>
<input name="Name" type="text" class="form-control" placeholder="Full Name" required>
</div>
<div class="col-sm">
<label for="Github_Username">Github Username:<span>*</span></label>
<input name="Github_Username" id="Github_Username" type="text" class="form-control" placeholder="Github Username" required>
</div>
</div>
<div class="row">
<div class="col-sm">
<label for="Email">Email:<span>*</span></label>
<input name="Email" id="Email" type="text" class="form-control" placeholder="[email protected]" required>
</div>
<div class="col-sm">
<label for="Phone_Number">Phone Number:<span>*</span></label>
<input name="Phone_Number" id="Phone_Number" type="text" class="form-control" placeholder="+91-8888-8888-88" required>
</div>
</div>
<div class="row">
<div class="col-sm">
<label for="College">College:<span>*</span></label>
<input name="College" type="text" class="form-control" placeholder="College" required>
</div>
<div class="col-sm">
<label for="Branch">Branch<span>*</span></label>
<input name="Branch" id="Branch" type="text" class="form-control" placeholder="Branch of Study" required>
</div>
</div>
<div class="col-lg-4 mb-3 also">
<h6>Have you participated in the previous seasons of Hactoberfest?<span>*</span></h6>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="Question_1" id="Yes" value="Yes" required>
<label class="form-check-label" for="Yes">Yes</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-inline-input" type="radio" name="Question_1" id="no" value="No" required>
<label class="form-check-label" for="no">No</label>
</div>
</div>
<div class="col-lg-4 mb-3">
<h6>How would you like to participate?<span>*</span></h6>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="Question_2" id="Mentor" value="Mentor" required>
<label class="form-check-label" for="Mentor">Mentor</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="Question_2" id="Participants" value="Participants" required>
<label class="form-check-label" for="Participants">Participant</label>
</div>
</div>
</form>
<button class="btn btn-primary booty" id="reset" type="submit" onclick="SubForm()">Submit form</button>
<p id="msg"></p>
</div>
<script src="formassets/app.js"></script>
</body>
</html>