-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathget-started.html
37 lines (36 loc) · 1.67 KB
/
get-started.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- font awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.1/css/all.min.css" integrity="sha512-5Hs3dF2AEPkpNAR7UiOHba+lRSJNeM2ECkwxUIxC1Q/FLycGTbNapWXB4tP889k5T5Ju8fs4b1P5z/iB4nMfSQ==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<title>login</title>
<link rel="stylesheet" href="get-started.css">
</head>
<body>
<div class="container">
<div class="left-panel">
<img src="./login-bg.jpeg" autoplay muted loop class="background-img"></img>
</div>
<div class="right-panel">
<h1> Sign in to TailorWind</h1>
<button class="google-signin"> <i class="fa-brands fa-google google-icon" aria-hidden="true"></i>
Sign in with Google
</button>
<p class="divider">or sign in with email</p>
<form action="#">
<label for="username">Username or Email</label>
<input type="text" id="username" name="username" placeholder="Enter your username or email">
<label for="password">Password</label>
<input type="password" id="password" name="password" placeholder="Enter your password">
<div class="options">
<a href="#" class="forgot">Forgot?</a>
</div>
<button type="submit" class="signin-button">Sign In</button>
</form>
<p class="signup">Don't have an account? <a href="#">Sign up</a></p>
</div>
</div>
</body>
</html>