-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregistor.html
98 lines (81 loc) · 4.04 KB
/
registor.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PriceOye | Login</title>
<!-- css link -->
<link rel="stylesheet" href="./Assets/Styles/extra.css">
<link rel="stylesheet" href="./Assets/Styles/styles.css">
<!-- switalert link -->
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
<!-- bootstrap link -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
</head>
<body>
<section>
<!-- SCROLER LINE SECTION STARTED -->
<section class="scroller">
<marquee direction="left" class="text-light mt-1">Dear Customer Order Confirmed after 5th April will be
delivered after Eid. Created By Haseeb Thank you for your understanding and patience.</marquee>
</section>
<!-- SCROLER LINE SECTION ENDED -->
<!-- SECTION SIX NAVBAR 500PX STARTED -->
<section id="navbar-fixed-screen" class="box-color d-lg-none
d-md-none d-sm-none d-flex aligin-items-center">
<nav class="container-fluid d-flex justify-content-between aligin-items-center">
<div class="d-flex gap-3">
<img id="bar" width="30" src="./Assets/Images/bar.svg" alt="Bar">
<img id="logo" width="140" src="./Assets/Images/logo.svg" alt="Logo">
</div>
<div class="input-nav d-flex mt-2">
<input class="rounded" type="text" placeholder="Search">
<img src="./Assets/Images/mic-blue.svg" alt="">
</div>
<div class="nav-button d-flex gap-2 mt-3 d-md-none d-none d-lg-flex">
<button class="rounded" id="nav-button-one">Log in</button>
<button class="rounded" id="nav-button-two">Register</button>
</div>
</nav>
</section>
<!-- SECTION SIX NAVBAR 500PX ENDED -->
<!-- Section One Started -->
<section id="navbar-fixed" class="box-color d-flex aligin-items-center">
<nav class="container-fluid d-flex justify-content-between aligin-items-center">
<div class="d-flex gap-3">
<img id="bar" width="30" src="./Assets/Images/bar.svg" alt="Bar">
<img id="logo" width="140" src="./Assets/Images/logo.svg" alt="Logo">
</div>
<div class="input-nav d-flex mt-2">
<input class="rounded d-md-none d-none" type="text" placeholder="Search">
<img src="./Assets/Images/mic-blue.svg" alt="">
</div>
<div class="nav-button d-flex gap-2 mt-3 ">
<button class="rounded" id="nav-button-one">Log in</button>
<button class="rounded" id="nav-button-two">Register</button>
</div>
</nav>
</section>
<!-- Section One Ended -->
<!-- section login started -->
<section class="container login_section">
<div class="login_box py-3">
<div class="text-center">
<h4>Registor Your Self</h4>
</div>
<form id="form" class="d-flex flex-column gap-3 mt-3">
<input id="userName" type="text" placeholder="User Name" required>
<input id="email" type="text" placeholder="Email" required>
<input id="password" type="text" placeholder="Password" required>
<input class="ps-0" type="file" id="myfile" name="myfile" required>
<button class="btn btn-primary">Registor</button>
</form>
</div>
</section>
<!-- section login ended -->
</section>
<!-- javascript link -->
<script type="module" src="./scripts/registor.js"></script>
</body>
</html>