-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
77 lines (67 loc) · 4.13 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
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
69
70
71
72
73
74
75
76
77
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<script src="https://kit.fontawesome.com/d82f52e54a.js" crossorigin="anonymous"></script>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.4.1/dist/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="stylesheet" href="css/styles.css">
<title>Login-Page-Design</title>
</head>
<body>
<div class="container">
<div class="myCard">
<div class="row">
<div class="col-md-6">
<div class="myLeftCtn">
<form action="" class="myForm text-center">
<header>Create New Account</header>
<div class="form-group">
<i class="fas fa-solid fa-user"></i>
<input type="text" class="myInput" placeholder="Username" id="username" required>
</div>
<div class="form-group">
<i class="fas fa-solid fa-envelope"></i>
<input type="email" class="myInput" placeholder="Email" id="email" required>
</div>
<div class="form-group">
<i class="fas fa-solid fa-lock"></i>
<input type="password" class="myInput" placeholder="******" id="password" required>
</div>
<div class="form-group">
<label for=""><input type="checkbox" class="check1" id="check_1" name="check_1" required><small>I read and agree to Terms & Conditions</small>
<div class="invalid-feedback">You must check the box.</div>
</label>
</div>
<input type="submit" class="btn" value="CREATE ACCOUNT">
</form>
</div>
</div>
<div class="col-md-6">
<div class="myRightCtn">
<div class="box"><header>Hello there!</header>
<p>Your eyes blink around 20 times a minute. That’s over ten million times a year!<br>
Your eyes blink around 20 times a minute. That’s over ten million times a year!<br>
The entire surface of your skin is replaced every month, which put another way means you have about 1,000 different skins in your life!<br>
On average you fart enough in one day to fill a party balloon.
</p>
<input type="button" class="btn_out" value="Learn More">
</div>
</div>
</div>
</div>
</div>
</div>
<div class="attribution">
Challenge by <a href="https://www.dailyui.co/" target="_blank">Daily UI</a>.
Coded by <a href="https://harsha094.github.io/personal-website/">Harsh Raghuwanshi</a>.
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.4.1/dist/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
</body>
</html>