-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.html
75 lines (65 loc) · 3.38 KB
/
form.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Meta tags -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Steven C. Thomas">
<meta name="description" content="Home page for the wdd230 class for BYU-Idaho. Course assignment portal. Steven C. Thomas. WDD 230 - Web Frontend Development">
<!-- OG meta tags -->
<meta property="og:title" content="Web Frontend Development Home Page">
<meta property="og:type" content="website">
<meta property="og:url" content="dos54.github.io/wdd230">
<meta property="og:image" content="dos54.github.io/wdd230/images/alaska-sign.jpg">
<!-- Font links -->
<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=Poppins:ital,wght@0,400;0,700;1,400;1,700&family=Roboto:ital@0;1&display=swap" rel="stylesheet">
<!-- Title and favicon -->
<title>Steven Thomas - WDD230 - Web Frontend Development</title>
<link rel="icon" href="favicon.ico">
<!-- Styles -->
<link rel="stylesheet" href="styles/normalize.css">
<link rel="stylesheet" href="styles/base.css">
<link rel="stylesheet" href="styles/larger.css">
<link rel="stylesheet" href="styles/form.css">
<!-- Scripts -->
<script defer src="scripts/menu.js"></script>
<script defer src="scripts/mode-button.js"></script>
</head>
<body>
<header>
<img src="images/trigger.jpg" alt="Steven Thomas with his dog, Trigger." class="profile">
<h1>Steven C. Thomas</h1>
<button type="button" id="mode">🕶️</button>
</header>
<button id="menu" type="button">!</button>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="chamber/index.html">Chamber</a></li>
<li><a href="siteplan.html">Site Plan</a></li>
<li><a class="active" href="form.html">Form</a></li>
</ul>
</nav>
<main>
<div class="card centered form-container">
<form action="record.html" method="get" class="web-form-1">
<label>Username<input type="text" name="username" id="username1" required placeholder="JohnSmith"></label>
<label>Password<input type="text" name="password" id="password1" required placeholder="js1234" pattern="(?=.*\d)(?=.*[a-z])(?=.*[A-Z]).{8,}"></label>
<label>Verify Password<input type="text" name="password" id="password2" required placeholder="js1234" pattern="(?=.*\d)(?=.*[a-z])(?=.*[A-Z]).{8,}"></label>
<label>Email<input type="email" id="email" name="email" required pattern="[a-zA-Z0-9._%+\-]+@byui\.edu$" title="Please enter a valid email address"></label>
<label>Please Rate Us<input type="range" id="rating" name="rating" required min="1" max="10" step="1" value="10"><span id="rating-value">10</span></label>
<label> <input type="submit" value="Sign Up"></label>
<p>* = required</p>
</form>
</div>
</main>
<footer>
<p>©<span id="year"></span> | Steven C. Thomas | Ketchikan, Alaska</p>
<p>Last Modification: <span id="lastModified"></span></p>
</footer>
<script defer src="scripts/getDates.js"></script>
<script defer src="scripts/validate.js"></script>
</body>
</html>