-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathasdf.html
More file actions
68 lines (56 loc) · 1.52 KB
/
asdf.html
File metadata and controls
68 lines (56 loc) · 1.52 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link
href="https://fonts.googleapis.com/css?family=Montserrat:400,500"
rel="stylesheet"
/>
<meta name="theme-color" content="#ffffff" />
<title>LogIn</title>
<!-- <style>
body{
background: linear-gradient(yellow,green);
width: 100%;
overflow:hidden;
margin:0;
padding:0;
}
fieldset{
display: block;
/* margin-left: 2px;
margin-right: 2px;
padding-top: 0em;
padding-bottom: 0.625em;
padding-left: 15.75em;
padding-right: 0.75em;
border: 5px groove (internal value); */
}
/* #logIn{
position:center;
width:800px;
height:600px;
} */
</style>
-->
<link rel="shortcut icon" href="icons/w.png" />
<link rel="manifest" href="./manifest.json" />
</head>
<body>
<center><h1 style="color:red"><i>Welcome to AnimalLoverz.org</i></h1></center> <br>
<fieldset action="" method="get" autocomplete="on">
<legend align="center"> <h1> Log In </h1></legend>
<form action="/action_page.php" >
Email id:
<input type="email" name="email"><br><br>
password:
<input type="text" name="phone" autocomplete="off"><br><br>
How much you like us <input type="range" name="points" min="0" max="10"><br><br>
<input type="checkbox" name="remember" value="remember">remember me<br><br>
<input type="submit" value="Log in">
</form>
</fieldset>
<script src="./app.js"></script>
</body>
</html>