forked from pkzstar/plus-side
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
140 lines (120 loc) · 4.87 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<!DOCTYPE html>
<html>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<head>
<link href='https://fonts.googleapis.com/css?family=Nunito' rel='stylesheet'>
<title>Plus Side</title>
<link rel="icon" type="image/x-icon" href="https://github.com/pkzstar/plus-side/blob/main/images/favicon.png?raw=true">
<link rel="stylesheet" href="index js\index.css">
<link rel="stylesheet" href="../patreon/patreon.css">
<link rel="stylesheet" href="../generaljscss\navBar.css">
<link rel="stylesheet" href="../generaljscss\style.css">
<style>
/* a {
box-shadow: inset 0 0 0 0 #d4dbdd;
transition: .3s ease-in-out;
}
a:hover {
box-shadow: inset 100px 100px 0 0 #54b3d6;
color: white;
} */
@media only screen and (max-width:600px) {
.pm-rank {
position: relative;
float: unset;
}
.events {
margin: 20px 20px 20px 20px;
}
.eventsList {
list-style: none;
padding: 0;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
}
</style>
</head>
<body>
<div class="wallpaper"></div>
<div class="wallpaper2"></div>
<!-- <img class="waveSide" src="https://github.com/pkzstar/plus-side/blob/main/images/wave-41459%20(3).png?raw=true" alt="">
<img class="waveSide2" src="https://github.com/pkzstar/plus-side/blob/main/images/wave-41459%20(3).png?raw=true" alt=""> -->
<div id="navBar"></div>
<div id="headerButtons hidden"></div>
<div class="upcomingImageParent">
<h1 id="pageHeader" class="textGradient">UPCOMING EVENTS</h1>
<div>
<a class="navCalPast" href="Calendar\CalView.html"><button style="margin: unset;" class="calView">Calendar</button></a>
<div onclick="toggleDropdown(event)" style="display: inline-flex;" class="past-events-drop calView">
<!-- Dropdown Button -->
<button id="past-events-drop-btn" class="past-events-drop-btn">
Past Events
<i class="2023-drop"></i>
</button>
<!-- Dropdown Content -->
<div id="dropdown-content" class="dropdown-content" style="display: none;">
<a class="dropdown-links" href="/past-events/2023.html"><p id="past-year">2023</p></a>
<a class="dropdown-links" href="/past-events/2024.html"><p id="past-year">2024</p></a>
</div>
</div>
</div>
<!-- <div>
<button id="toggleBtn" class="Upcoming-event-form-button calView">Add an Event</button>
<div id="inputContainer" class="hidden Upcoming-event-form">
<form id="upcomingSub" action="/submitEvent" method="post">
<div class="addEventSec">
<p id="EventTitleUpcoming"></p>
<input placeholder="Event Name" type="text" id="textInputUpcomingTitle" name="upcomingTitle">
</div>
<div class="addEventSec">
<p id="EventDateUpcoming"></p>
<input placeholder="Event Date(s)" type="text" id="textInputUpcomingDate" name="upcomingDate">
</div>
<div class="addEventSec">
<p id="EventLocationUpcoming"></p>
<input placeholder="(City, State, Country)" type="text" id="textInputUpcomingLocation" name="upcomingLocation">
</div>
<div class="addEventSec">
<p id="EventUrlUpcoming"></p>
<input placeholder="Start.gg" type="text" id="textInputUpcomingUrl" name="upcomingUrl">
</div>
<div class="addEventSec">
<p id="EventImageUpcoming"></p>
<input placeholder="Direct Link" type="text" id="textInputUpcomingImage" name="upcomingImg">
</div>
<div class="addEventSec">
<p id="EventDescriptionUpcoming"></p>
<input placeholder="Description" type="text" id="textInputUpcomingDescription" name="upcomingDescription">
</div>
<div class="addEventSec hidden">
<p id="EventPassUpcoming"></p>
<input placeholder="Password" type="text" id="textPassUpcoming" name="upcomingPass">
</div>
<button id="SubmitBtn" class="submit-btn" type="submit">Submit</button>
</form>
</div>
</div>
</div>
</div> -->
</div>
<div id="eventsList"></div>
</div>
</div>
<div class="patronsCenter">
<a class="patrons whiteText" href="patreon\patreons.html">A huge thank you to all our patrons!</a>
</div>
<div class="wavesBoth">
<img class="wave" src="https://github.com/pkzstar/plus-side/blob/main/images/wave-41459%20(3).png?raw=true" alt="">
<img class="waveReverse" src="https://github.com/pkzstar/plus-side/blob/main/images/wave-41459%20(3).png?raw=true" alt="">
</div>
<script src="displayEvents.js"></script>
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
<script src="/index js\indexFormEvents.js"></script>
<script src="/index js\indexEventsList.js"></script>
<script src="../generaljscss\navBar.js"></script>
<script src="../generaljscss\script.js"></script>
</body>
</html>