-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSignup.html
65 lines (65 loc) · 2.05 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="Signup.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<title>My Brand_Anaclet</title>
</head>
<body class="my_page">
<div class="Header">
<img class="profilepic" src="Icons/logo.JPG" alt="Profile Picture" />
</div>
<div class="main">
<span class="welcome"> Welcome to Anaclet's Brand. </span>
<span class="quote">
<span> "Talk is cheap. Show me the code. ― Linus Torvalds." </span>
</span>
<form class="Importantarea" action="#" method="post">
<!-- Form wrapping -->
<span><strong>Create an Account</strong></span>
<div class="Username">
<input
id="Username"
name="Username"
type="text"
placeholder="Username"
/>
</div>
<div class="Password">
<input
id="Password"
name="Password"
type="password"
placeholder="Password"
/>
</div>
<div class="ConfirmPassword">
<input
id="ConfirmPassword"
name="ConfirmPassword"
type="password"
placeholder="Confirm Password"
/>
</div>
<div id="errorBlock" class="error"></div>
<button type="submit" class="signup">Sign Up</button>
<span class="hometext2"
><a href="Login.html" class="signin"><strong>Log In</strong></a> if
you already have an account</span
>
</form>
<div id="goHome">
<a href="Home.html"> <i class="fas fa-home fa-2x"></i></a>
</div>
</div>
<script src="Signup.js"></script>
</body>
</html>