-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrecord.html
More file actions
84 lines (81 loc) · 4.05 KB
/
Copy pathrecord.html
File metadata and controls
84 lines (81 loc) · 4.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="favicon.ico">
<title>Samuel Eli Chacon Fernandez - WDD 230 - Record Html</title>
<meta name="description" content="WDD 230 - Web Frontend Development. Samuel Eli Chacon Fernandez's course assignment portal.">
<meta name="author" content="Samuel Eli Chacon Fernandez">
<!-- Facebook Meta Tags -->
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://sechafer.github.io/wdd230/" />
<meta property="og:title" content="Samuel Chacon - WDD 230 - Web Frontend Development" />
<meta property="og:description" content="WDD 230 - Web Frontend Development course assignment portal for Samuel Chacon" />
<meta property="og:image" content="https://sechafer.github.io/wdd230/images/vista-aerea-paco-municipal-de-sao-bernardo-do-campo.webp" />
<meta property="og:image:type" content="image/png" />
<!-- Twitter Meta Tags -->
<meta name="twitter:title" content="Samuel Chacon - WDD 230 - Web Frontend Development" />
<meta name="twitter:description" content="WDD 230 - Web Frontend Development course assignment portal for Samuel Chacon" />
<meta name="twitter:image" content="https://sechafer.github.io/wdd230/images/vista-aerea-paco-municipal-de-sao-bernardo-do-campo.webp" />
<meta name="twitter:card" content="summary_large_image" />
<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=Open+Sans:ital,wght@0,300..800;1,300..800&family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet">
<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">
<script src="scripts/getDates.js"></script>
<script>
function validatePasswords() {
const password = document.getElementById('password');
const confirmPassword = document.getElementById('confirm_password');
if (password.value !== confirmPassword.value) {
alert('Passwords do not match. Please try again.');
password.value = '';
confirmPassword.value = '';
password.focus();
return false;
}
return true;
}
function updateRangeValue(val) {
document.getElementById('rangeValue').textContent = val;
}
</script>
</head>
<body>
<header>
<div id="hdTitle">
<img id="profile-img" src="images/profile.webp" alt="Profile Picture" loading="lazy">
<span>Samuel Eli Chacon Fernandez</span>
</div>
<button id="menu"></button>
<div id="mode">
🕶️
</div>
<nav>
<ul class="navigation">
<li><a href="index.html">Home</a></li>
<li><a href="chamber/index.html">Chamber</a></li>
<li><a href="chamber/chamber-site-plan.html">Site Plan</a></li>
<li><a class="active" href="form.html">Form</a></li>
</ul>
</nav>
</header>
<main>
<section>
<h2>Form Submission Confirmation</h2>
<p>Thank you for submitting the form. Your information has been received.</p>
</section>
</main>
<footer>
<div class="footer-info">
<p>© <span id="cYear"></span> Samuel Eli Chacon Fernandez</p>
</div>
<p id="lastModified"></p>
</footer>
</body>
</html>