-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathsignup.html
51 lines (46 loc) · 1.86 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sign Up - Foodie Blog</title>
<!-- Add Open Graph Protocol (OGP) meta tags -->
<meta property="og:title" content="Sign Up - Foodie Blog">
<meta property="og:description" content="Join our Foodie Blog community. Sign up now!">
<meta property="og:image" content="assets/images/foodie-blog.png">
<meta property="og:url" content="https://thankful-smoke-06e585e10.1.azurestaticapps.net/">
<meta name="og:site_name" content="Foodie Blog">
<!-- Combine external CSS files -->
<link rel="stylesheet" href="signup.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"/>
<!-- Asynchronous loading of external scripts -->
<script defer src="signup.js"></script>
<script defer src="script.js"></script>
</head>
<body>
<div class="wrapper">
<header>Sign Up - Foodie Blog</header>
<form action="#">
<div class="field email">
<label for="email"><h3>Enter your Email address:</h3></label>
<div class="input-area">
<input type="text" placeholder="Email Address">
<i class="icon fas fa-envelope"></i>
<i class="error error-icon fas fa-exclamation-circle"></i>
</div>
<div class="error error-txt">Email can't be blank</div>
</div>
<div class="field password">
<label for="email"><h3>Enter your Password: </h3></label>
<div class="input-area">
<input type="password" placeholder="Password">
<i class="icon fas fa-lock"></i>
<i class="error error-icon fas fa-exclamation-circle"></i>
</div>
<div class="error error-txt">Password can't be blank</div>
</div>
<input type="submit" value="Sign Up">
</form>
</div>
</body>
</html>