-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (37 loc) · 1.58 KB
/
index.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css" />
<link rel="shortcut icon" href="./images/logo.png" type="image/x-icon">
<link href="https://fonts.googleapis.com/css2?family=Jost:wght@500&display=swap" rel="stylesheet">
<title>SmartFinance</title>
</head>
<body>
<div class="main">
<input type="checkbox" id="chk" aria-hidden="true">
<div class="signup">
<form>
<label for="chk" aria-hidden="true">
<img src="./images/logo.png" class="justify-content-center" height="140" width="140" alt="Logo SmartFinance"/>
</label>
<input type="text" name ="txt" placeholder="Username:" required="">
<input type="email" name="email" placeholder="Email:" required="">
<input type="Password" name="pswd" placeholder="Password:" required="">
<input type="Confirm Password" name="pswd" placeholder="Confirm Password:" required="">
<p>Terms of use</p>
<button>Sign Up</button>
</form>
</div>
<div class="login">
<form>
<label for="chk" aria-hidden="true">Login</label>
<input type="email" name="email" placeholder="Email" required="">
<input type="Password" name="pswd" placeholder="Password" required="">
<button>Login</button>
</form>
</div>
</div>
</body>
</html>