-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage3.html
44 lines (43 loc) · 1.2 KB
/
page3.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
<!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">
<title>PAGE 3</title>
<link rel="stylesheet" href="page3.css">
</head>
<body>
<header class="class">
<div class="class2">
<img src="img/logo-removebg-preview.png" width="150px" >
</div>
<div class="class" id="page3">
<form
action="t&r.html"
name="myForm"
onsubmit="return validateForm()"
method="post"
>
<h1>LOGIN</h1>
<label>EMAIL ADDRESS</label>
<div class="formdesign" id="email">
<input type="email" name="femail" required />
</div>
<br>
<label>PASSWORD</label>
<br>
<div class="formdesign" id="pass">
<input type="password" name="fpass" required />
</div>
<br><br>
<br>
<div class="class3">
<button onclick="window.open('/t&r.html')" id="button" type="submit" value="SIGN UP" >Submit </button>
</div>
</form>
</div>
</header>
<script src="page3.js"></script>
</body>
</html>