-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuser-join.html
32 lines (30 loc) · 1.17 KB
/
user-join.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="icon" href="./Q_favicon.png">
<link rel="stylesheet" type="text/css" href="main.css">
<link href='https://fonts.googleapis.com/css?family=Bebas Neue: 100,400,700' rel='stylesheet'>
<link href='https://fonts.googleapis.com/css?family=Open Sans: 100,400,700' rel='stylesheet'>
<title>Join an Event</title>
</head>
<body>
<a href="index.html"> <img src="Qup.png" id="QupLogo"> </a>
<h2> Join an Event </h2>
<!-- Modal Content -->
<div class="buttonBox">
<form action="user-queue.html">
<div class="formItem">
Name: <input type="text" name="First Name Only", id="name">
</div>
<div class="formItem">
Event Code: <input type="text" name="XXX", id="code">
</div>
<input type="button" value="Submit", onclick="createUser()">
</form>
</div>
</body>
<script src="https://www.gstatic.com/firebasejs/7.7.0/firebase.js"></script>
<script src="newQ.js"> </script>
<script src="garage.js"> </script>
</html>