-
Notifications
You must be signed in to change notification settings - Fork 0
/
two.html
55 lines (55 loc) · 1.45 KB
/
two.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.10.1/gsap.min.js"></script>
<script src="script.js"></script>
<title>CafeSerenityBites</title>
<link
rel="icon"
type="image/x-icon"
href="CAFE SERENIT-fotor-2023092923402.png"
/>
<link rel="stylesheet" href="styl.css" />
</head>
<body>
<form action="index.html" method="post">
<div class="imgcontainer">
<img
src="CAFE SERENIT-fotor-2023092923402.png"
alt="Avatar"
class="avatar"
/>
</div>
<div class="container">
<label for="uname"><b>Username</b></label>
<br />
<input
type="text"
placeholder="Enter Username"
name="uname"
id="uname"
required
/>
<br />
<label for="psw"><b>Password</b></label>
<br />
<input
type="password"
placeholder="Enter Password"
name="psw"
id="psw"
required
/>
<br />
<button type="submit">Login/SignUp</button>
<br />
<label>
<input type="checkbox" checked="checked" name="remember" /> Remember
me
</label>
</div>
</form>
</body>
</html>