-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
90 lines (89 loc) · 4.13 KB
/
Copy pathform.html
File metadata and controls
90 lines (89 loc) · 4.13 KB
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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Juan Carlos Mena Osorio">
<meta name="description" content="Form style and solution for WDD230 class">
<title>Form Exercise for WD230</title>
<meta property="og:title" content="Website dedicated to WDD 230 - Web Frontend Development at BYU-I" >
<meta property="og:type" content="website">
<meta property="og:url" content="https://men21049.github.io/wdd230/" >
<meta property="og:image" content="https://men21049.github.io/wdd230/images/tomas-martinez-gdl.jpg" >
<link rel="icon" type="image/x-icon" href="images/favicon.ico">
<link href="styles/normalize.css" rel="stylesheet" >
<link href="styles/base.css" rel="stylesheet" >
<link href="styles/large.css" rel="stylesheet" >
<link rel="stylesheet" href="styles/form.css">
</head>
<body>
<div class="content">
<header class="border">
<picture>
<source media="(min-width:150px)"
srcset="images/me.jpg">
<img class="logo_class" srcset="images/me.jpg" alt="JC Mena photo">
</picture>
<h1 class="right_20">Juan Carlos Mena Osorio</h1>
<button id="menu"></button>
<nav class="navigation">
<a class="active" href="#">🏠 Home</a>
<a href="lesson03/chamber-site-plan.html">Site Plan</a>
<a href="chamber/">Chamber</a>
<a href="https://www.byui.edu" target="_blank">BYU-Idaho</a>
<a href="https://www.churchofjesuschrist.org/study/scriptures?lang=eng" target="_blank">Scripture</a>
</nav>
</header>
<main>
<form class="wf1" method="get" action="record.html">
<fieldset>
<legend>Form Build</legend>
<label>Username*:<input type="text" id="username" name="username" required></label>
<label>Password*:<input type="password" id="password" name="password"
placeholder="At least eight characters long and can only be alpha-numeric"
pattern="[A-Za-z0-9]{8}"
title="Value must be at least eight (8) characters long and can only be alpha-numeric"
required></label>
<label>Repeat Password*:<input type="password" id="rpassword" name="rpassword"
required></label>
<div id="formmessage"></div>
<label>Email*: <input type="email" name="email" id="email"
placeholder="Your byui email address"
title="A valid byui.edu email address."
pattern="[a-zA-Z0-9_.\-]+@byui.edu"
required></label>
<div id="emailMessage"></div>
<div id="rangevalue"></div>
<label>Page Rating
<input type="range" name="pageRating" id="pageRating" min="1" max="10" value="0" step="1" list="rangevalues">
<datalist id="rangevalues">
<option value="0">0</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
<option value="9">9</option>
<option value="10">10</option>
</datalist>
</label>
</fieldset>
<input type="submit" value="Send Page Rating">
</form>
</main>
<footer class="border">
<p>© <span id="copyright_year"></span><br>
Juan Carlos Mena Osorio <br>
Jalisco, México
<img src="images/Mexico.png" alt="Mexico flag" width="20" height="20">
</p>
<p id="lastModified">
</p>
</footer>
</div>
<script src="scripts/checkForm.js"></script>
</body>
</html>