-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevent-6.html
160 lines (145 loc) · 5.42 KB
/
event-6.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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<!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" />
<script src="https://kit.fontawesome.com/a81368914c.js"></script>
<link
href="https://fonts.googleapis.com/css2?family=Cutive+Mono&family=Poppins:wght@100;200;300;400;500;600;700&display=swap"
rel="stylesheet"
/>
<script src="https://code.jquery.com/jquery-3.6.1.min.js" integrity="sha256-o88AwQnZB+VDvE9tvIXrMQaPlFFSUTR+nldQm1LuPXQ=" crossorigin="anonymous"></script>
<link rel="stylesheet" href="public/css/event-6.css" />
<title>Innovate NSUT</title>
</head>
<body>
<div class="loader_bg">
<div class="loader"></div>
</div>
<!-- <div class="ripple-background">
<div class="circle xxlarge shade1"></div>
<div class="circle xlarge shade2"></div>
<div class="circle large shade3"></div>
<div class="circle mediun shade4"></div>
<div class="circle small shade5"></div>
</div> -->
<div class="modal">
<img src="public/images/portfolio/Event 6.png" alt="" />
<div class="close"></div>
</div>
<div class="container">
<div id="alert"></div>
<div class="card">
<div class="header">
<!-- <div class="hamburger-menu">
<div class="center"></div>
</div> -->
<!-- <a href="#" class="mail"> -->
<!-- <i class="far fa-envelope"></i> -->
</a>
<div class="main">
<div class="image">
<div class="hover">
<i class="fas fa-camera fa-2x"></i>
</div>
</div>
<h3 class="name">Innovate NSUT</h3>
<h3 class="sub-name">Event</h3>
</div>
</div>
<div class="content">
<div class="left">
<div class="about-container">
<h3 class="title">Description</h3>
<div class="shipping">
STARTS AT
<div id="timeleft"></div>
</div>
<div class="timer">
<span
>Time Left :
<div id="timeleft0"></div>
</span>
</div>
<p class="text">
A 24 hour hackathon in which participants can compete individually
or as a team with a maximum of 6 members. They would be required to
submit their projects within 24 hours.You are expected to come up
with new and innovative ideas, any idea that has been copied from
somewhere will be disqualified. Lone Wolfs are also allowed. Your
hack must be developed entirely during the Hackathon duration.
</p>
</div>
<div class="icons-container">
<!-- <a href="#" class="icon">
<i class="fab fa-facebook"></i>
</a>
<a href="#" class="icon">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="icon">
<i class="fab fa-google-plus-g"></i>
</a>
<a href="#" class="icon">
<i class="fab fa-twitter"></i>
</a> -->
</div>
<div class="buttons-wrap">
<div class="follow-wrap">
<button class="follow" id="enroll_btn">
Enroll
<!-- <span> <ion-icon name="checkmark-outline"></ion-icon></span> -->
</button>
</div>
<div class="share-wrap">
<button id="revoke_btn" class="share">Revoke</button>
</div>
</div>
</div>
<div class="right">
<div>
<!-- <h3 class="number">91</h3>
<h3 class="number-title">Posts</h3> -->
</div>
<div>
<!-- <h3 class="number">2.4K</h3>
<h3 class="number-title">Following</h3> -->
</div>
<div>
<!-- <h3 class="number">4.7K</h3>
<h3 class="number-title">Followers</h3> -->
</div>
</div>
</div>
</div>
</div>
<script>
const image = document.querySelector('.image');
const hover = document.querySelector('.hover');
const modal = document.querySelector('.modal');
const close = document.querySelector('.close');
function show(){
hover.classList.add('active');
modal.classList.add('show');
}
function hide(){
hover.classList.remove('active');
modal.classList.remove('show');
}
image.addEventListener('click', show);
close.addEventListener('click', hide);
</script>
<!-- <script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script> -->
<script src="sweetalert2.all.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
setTimeout(function () {
$(".loader_bg").fadeToggle();
}, 1500);
</script>
<script src="//cdn.jsdelivr.net/npm/sweetalert2@11"></script>
<script src="./connection/event_enrolled.js"></script>
<script src="./connection/event.js"></script>
</body>
</html>