-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstudy.html
29 lines (23 loc) · 915 Bytes
/
study.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
<!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="study.css">
<title>login</title>
</head>
<body>
<form align="center">
<div>
<fieldset>
<legend> <h3>login</h3></legend>
<label for="user">email</label><br>
<input id="user" type="email" placeholder="enter your email" required><br>
<label for="password">password</label><br>
<input id="password" type="password" placeholder="enter your password" required><br>
<input class="a" type="submit" value="login">
<input class="e" type="button" value="creat user" onclick="location.replace('q1.html');">
</fieldset>
</div>
</form>
</body>