-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignUp.html
59 lines (52 loc) · 2.67 KB
/
signUp.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="signUp.css">
<script src="signUp.js" type="module" defer></script>
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
<script src="https://unpkg.com/@lottiefiles/lottie-player@latest/dist/lottie-player.js"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Quicksand:wght@500&display=swap');
</style>
<title>Sign Up Page</title>
</head>
<body>
<h1>Coffee Time Sign-Up</h1>
<h4>Your source for meeting coworkers....digitally</h4>
<h3></h3><a href="./index.html">Return To Login Page</a></h3>
<div id='signup-HERO'>
<div class ='signup-logo'>
<lottie-player src="https://assets3.lottiefiles.com/packages/lf20_XPa6rt.json" background="transparent" speed=".1" style="width: 400; height: 400;" loop autoplay></lottie-player>
</div>
<div id='signup-card'>
<form>
<div class='left-signup'>
<input type="text" name = "username" placeholder="Desired Username">
<input type="text" name = "password" placeholder="Desired Password">
<input type="number" name = "mod" placeholder="Current Mod (ex: 3)">
</div>
<input type="text" name = "fullName" placeholder="Your Full Name">
<h3 class = 'time-signup'>Time Available:</h3>
<div class = 'radio-buttons'>
<input type="radio" name = "timeAvailable" value = 'Morning'>
<label for="Morning">Morning</label>
<input type="radio" name = "timeAvailable" value = 'Afternoon'>
<label for="Afternoon">Afternoon</label>
<input type="radio" name = "timeAvailable" value = 'Evening'>
<label for="Evening">Evening</label>
</div>
<!-- <input type="text" name = "timeAvailable" placeholder="Preferred Meeting Time (Morning, Afternoon, Evening)"> -->
<input type="text" name = "slackLink" placeholder="Your Slack Link">
<div class = 'tooltip'>
Slack Link?
<span class='tooltip-text'>To get your Slack Link you will right click your OWN name in your slack DM's and copy Link.</span>
</div>
<input class = 'signup-submit' type="submit">
</form>
</div>
</div>
</body>
</html>