-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
102 lines (76 loc) · 3.54 KB
/
index.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./stylesheet/styles.css">
<script src="./scripts/script.js" defer></script>
<title>Sign Up</title>
</head>
<body>
<div id="main-container">
<div id="img-container">
<img id="flowers" src="./images/flowers.jpg" alt="flowers">
<div id="logo">
<img id="mona" src="./images/mona-lisa.png" alt="mona lisa">
<h1>Uexposure</h1>
</div>
</div>
<div id="sign-up-container">
<header>
<p class="header-text">
Since the begin of humanity we have artists, in the begging using cave walls to exposure their art, today we don't need such place to do it, only a computer and internet is enough.
<br>
Do you wanna to exposure your art to everyone?
<br>
<br>
Join us!
</p>
</header>
<main>
<h2 id="sign-up-heading">
Sign Up
</h2>
<form id="sign-up-form" action="" onsubmit="return checkForm(this)">
<div class="form-column">
<label for="first-name">FIRST NAME</label>
<br>
<input type="text" name="first-name" pattern="[a-zA-Z]+" required>
<br>
<label for="email">EMAIL</label>
<br>
<input type="email" name="email" required>
<br>
<label for="password">PASSWORD</label>
<br>
<input type="password" name="password" required>
<br>
</div>
<div class="form-column">
<label for="last-name">LAST NAME</label>
<br>
<input type="text" name="last-name" pattern="[a-zA-Z]+"required>
<br>
<label for="phone-number">PHONE NUMBER</label>
<br>
<input type="tel" name="phone-number" pattern="[0-9]+" required>
<br>
<label for="confirmPassword">CONFIRM PASSWORD</label>
<br>
<input type="password" name="confirmPassword" required>
<br>
</div>
</form>
</main>
<footer>
<b>ATTENTION: All items are required</b>
<button id="submit-button" type="submit" form="sign-up-form">
Create Account
</button>
<p>Already have an account? <a href="./index.html">Log in</a></p>
</footer>
</div>
</div>
</body>
</html>