-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauthentication.html
57 lines (48 loc) · 1.24 KB
/
authentication.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Log-in</title>
<style>
fieldset {
text-align: center;
position: center;
background-color: beige;
margin: auto;
width: 600px;
height: 800px;
border-radius: 10px;
padding: 8px;
border: 1px solid #ccc;
}
form {
color: black;
margin: 30px;
}
body {
background-color: azure;
}
input {
width: 180px;
height: 30px;
margin: 30px;
border-radius: 4px;
padding: 2px;
border: 1px solid #ccc;
}
</style>
</head>
<body>
<fieldset>
<h2>LOG-IN</h2>
<form action="#" method="post">
<label for="e-mail">E-mail</label>
<input type="name" name="e-mail"></input> <br>
<label for="password">Password</label>
<input type="password" name="password"></input> <br>
<input type="submit" name="submit" id="submitButton">
</form>
</fieldset>
</body>
</html>