forked from amoyer22/Pelicans_Plate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (34 loc) · 1.68 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="style.css" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Koh+Santepheap:wght@100;300;400;700;900&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Averia+Sans+Libre:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap" rel="stylesheet">
<link rel="icon" type="image/x-icon" href="images/PP_favicon-16x16.png">
<title>Pelican's Plate: Sign up</title>
</head>
<body class="signup" id="signup">
<div id="signup-container">
<div class="signup-item">
<img src="images/Pelicans-Plate-logo.png" alt="logo">
<h1>Hey there! Welcome to Pelican's Plate!</h1>
<input type="text" placeholder="Name" autocomplete="name" id="name">
<input type="email" placeholder="Email Address" autocomplete="email" id="email">
<input type="password" placeholder="Password" id="password" maxlength="12">
<button class="btn-signup" type="button" onclick="signup()">Sign up!</button>
</div>
<div class="signup-item">
<h2>Already have an account?</h2>
<button class="btn-signup" type="button" onclick="location.href='login.html'">Log in!</button>
</div>
<div class="signup-item">
<a href="home.html" id="guestLink">...Or continue as guest</a>
</div>
</div>
<script src="script.js"></script>
</body>
</html>