-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (50 loc) · 2.73 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"/>
</head>
<body>
<section class="login py-3 bg-dark">
<div class="container px-3 py-3 my-3">
<div class="row g-0">
<div class="col-lg-6">
<img src="https://www.forbesindia.com/media/images/2023/Aug/img_215547_dubai_shutterstock_sm.jpg" alt="Dubai" title="Dubai" height="100%" width="100%" class="rounded-5">
</div>
<div class="col-lg-6 text-center text-light">
<h1 class="animate__animated animate__zoomInUp">Welcome Here !!!</h1>
<form>
<div class="form-row py-2 pt-5">
<div class="offset-1 col-lg-10">
<input type="text" class="inp px-3" placeholder="Username" autofocus="">
</div>
</div>
<div class="form-row py-2">
<div class="offset-1 col-lg-10">
<input type="password" class="inp px-3" placeholder="Password">
</div>
</div>
<div class="form-row py-3">
<div class="offset-1 col-lg-10">
<button class="btn1 rounded-5 bg-info text-light">Sign Up</button>
</div>
</div>
</form>
<p class="text-light">Or Login With</p>
<span><i class="fa fa-facebook"> </i></span>
<span><i class="fa fa-whatsapp"> </i></span>
<span><i class="fa fa-github"> </i></span>
<span><i class="fa fa-linkedin"> </i></span>
<span><i class="fa fa-instagram"> </i></span>
</div>
</div>
</div>
</section>
</body>
</html>