-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathudaan.html
68 lines (63 loc) · 3.19 KB
/
udaan.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
<!DOCTYPE html>
<html>
<head>
<title>Certificates</title>
<!-- META TAGS -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no, user-scalable=no">
<!-- STYLES -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="css/udaan.css">
<link href="https://fonts.googleapis.com/css?family=Oswald:700" rel="stylesheet">
</head>
<body>
<div id="main">
<div class="back" onclick="location.replace('index.html')">Back</div>
<div class="heading">Udaan</div>
<div class="sub-heading">Certificates</div>
<div class="options">
<div class="option active" onclick="switchTab('get')">Get Certificate</div>
<div class="option" onclick="switchTab('verify')">Verify Certificate</div>
</div>
<div class="inputs">
<!-- 'GET' INPUTS-->
<select id="department-get" onchange="populateEvents()" class="form-control get-certificate">
<option value="null">Select Event Type</option>
<option value="techEvents">Tech Events</option>
<option value="nonTechEvents">Non-Tech Events</option>
</select>
<select id="events-get" class="form-control get-certificate">
<option value="null">Select Event</option>
</select>
<input type="number" id="contact" class="form-control get-certificate" placeholder="Enter Registered Phone Number">
<button class="get-certificate btn" onclick="getCertificate()">Get Certificate</button>
<!-- 'VERIFY' INPUTS-->
<input type="text" class="form-control verify" placeholder="Enter Name" id="name">
<input type="text" class="form-control verify" placeholder="Enter code" id="code">
<select id="department" onchange="populateEventsVerify()" class="form-control verify">
<option value="null">Select Event Type</option>
<option value="techEvents">Tech Events</option>
<option value="nonTechEvents">Non-Tech Events</option>
</select>
<select id="events" class="form-control verify">
<option value="null">Select Event</option>
</select>
<button class="verify btn" onclick="verifyCertificate()">Verify Certificate</button>
<div class="message" id="message"></div>
<div class="error" id="error">Some error</div>
<div class="note">
<div class="note-heading">Note</div>
<div class="content">For any Queries/correction fill out the following form</div>
<div class="content">https://forms.gle/Sx9TmVpYKvc52dsKA</div>
</div>
</div>
</div>
<!-- SCRIPTS -->
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"
integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy"
crossorigin="anonymous"></script>
<script type="text/javascript" src="js/udaan.js"></script>
</body>
</html>