-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
87 lines (83 loc) · 2.67 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="./f.png" />
<link rel="stylesheet" type="text/css" href="./results.css" />
<script src="./script.js" async></script>
<title>Results | ADG VIT</title>
</head>
<body>
<div class="main">
<!-- Input Starts -->
<div class="main-form" id="mainForm">
<img id="adglogo2" src="./adg_logo.svg" alt="ADG Logo" />
<h1 class="heading">Recruitments '22 Result</h1>
<p class="para">
Check your Result with VIT Registration Number
</p>
<input
class="input"
type="text"
placeholder="Enter Registration Number"
/>
<button class="btn1" id="search">Check Result</button>
<div class="output"></div>
</div>
<!-- Input Ends -->
<!-- Selected Starts -->
<div class="main-card" id="selected">
<div class="result-text">
<img src="./17 5.png" class="img" />
<div class="message">
<div class="congratulations">Congratulations!</div>
<div class="name" id="name">Participant</div>
</div>
</div>
<div class="result-message">
<div class="selection_status">
You've been Selected to be a part of ADG
</div>
<div class="selected_domain" id="domain">
Under Technical, Management Domain
</div>
<div class="next">What's Next</div>
<div class="step">
Congratulations, sit tight and wait for one of our representatives to contact
you soon and brief you about the exciting chapter of your life that’s about to start.
</div>
<!-- <div class="date" id="date">06 Feb 2022, 12:30 PM</div> -->
<!-- <button class="btn1" id="discord">
<img src="./bi_discord.png" />   Join Discord Server
</button> -->
</div>
</div>
<!-- Selected Ends -->
<!-- Rejected Starts -->
<div class="main-card" id="rejected">
<div class="result-text">
<img src="./41 5.png" class="img" />
<div class="message">
<div class="congratulations">
Better Luck Next Time!
</div>
<div class="name" id="name1">Participant</div>
</div>
</div>
<div class="result-message">
<div class="selection_status">
Unfortunately you didn't make it
</div>
<div class="next-rej">What's Next</div>
<div class="step">
Don’t be disheartened, we at ADG believe in core learning of skills for everyone.
We heartly invite you for all our workshops and events coming forward where
you can interact and learn from some of our best. Hope to see you there soon
</div>
</div>
</div>
<!-- Rejected Ends -->
</div>
</body>
</html>