Register system
This commit is contained in:
BIN
assets/img/gallery/bg-01.jpg
Normal file
BIN
assets/img/gallery/bg-01.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 88 KiB |
@@ -54,4 +54,7 @@
|
||||
}
|
||||
.bglightorange{
|
||||
background: #fdc34798;
|
||||
}
|
||||
}
|
||||
.img-burger{
|
||||
background: url(../assets/img/gallery/burger.png);
|
||||
}
|
||||
|
||||
106
register.html
Normal file
106
register.html
Normal file
@@ -0,0 +1,106 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>Login</title>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Favicons-->
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="assets/img/favicons/favicon-32x32.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="assets/img/favicons/favicon-16x16.png">
|
||||
<link rel="shortcut icon" type="image/x-icon" href="assets/img/favicons/favicon.ico">
|
||||
|
||||
|
||||
<!-- Stylesheet-->
|
||||
<link rel="stylesheet" href="./css/style.css">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@200;300;400;600;700;900&display=swap" rel="stylesheet">
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
|
||||
<link rel="stylesheet" href="./css/fontawesome/all.min.js">
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
|
||||
<!--===============================================================================================-->
|
||||
</head>
|
||||
<body>
|
||||
<div class="container-fluid">
|
||||
<div class="row">
|
||||
<div class="col-6">
|
||||
<div style="background-image:url('assets/img/gallery/bg-01.jpg');">
|
||||
<img src="./assets/img/gallery/bg-01.jpg" alt="" srcset=""width="600">
|
||||
</div>
|
||||
</div>
|
||||
<div class="mt-5 pt-5 col-md-6 col-xxl-6 col-6">
|
||||
<form class="mt-5 text-center">
|
||||
<span class="fs-2 fw-bold text-500 text-center mb-sm-4">
|
||||
Sign-up for free
|
||||
</span>
|
||||
|
||||
<div class="input-group mb-3 mt-5">
|
||||
<span class="input-group-text" id="basic-addon1">
|
||||
<i class="fa fa-user-circle" aria-hidden="true"></i>
|
||||
</span>
|
||||
<input type="text" class="form-control" placeholder="Full Name" aria-label="Full Name" aria-describedby="basic-addon1">
|
||||
</div>
|
||||
|
||||
<div class="input-group mb-3">
|
||||
<span class="input-group-text" id="basic-addon1">
|
||||
<i class="fa fa-phone" aria-hidden="true"></i>
|
||||
</span>
|
||||
<input type="tel" class="form-control" placeholder="Phone Number" aria-label="Phone Number" aria-describedby="basic-addon1">
|
||||
</div>
|
||||
|
||||
<div class="input-group mb-3">
|
||||
<span class="input-group-text" id="basic-addon1">
|
||||
<i class="fa fa-envelope" aria-hidden="true"></i>
|
||||
</span>
|
||||
<input type="email" class="form-control" placeholder="Email" aria-label="Email" aria-describedby="basic-addon1">
|
||||
</div>
|
||||
<div class="input-group mb-3">
|
||||
<span class="input-group-text" id="basic-addon1">
|
||||
<i class="fa fa-lock" aria-hidden="true"></i>
|
||||
</span>
|
||||
<input type="password" class="form-control" placeholder="Password" aria-label="Password" aria-describedby="basic-addon1">
|
||||
<span class="input-group-text" id="basic-addon1">
|
||||
<i class="fa fa-eye" aria-hidden="true"></i>
|
||||
</span>
|
||||
</div>
|
||||
|
||||
<div class="mb-3 form-check text-start">
|
||||
<input type="checkbox" class="form-check-input" id="exampleCheck1">
|
||||
<label class="form-check-label" for="exampleCheck1">Remember Me</label>
|
||||
</div>
|
||||
|
||||
<div class="d-grid gap-2 mx-auto">
|
||||
<button type="submit" class="rounded-pill btn btn-lg bg-orange">Submit</button>
|
||||
</div>
|
||||
|
||||
<span class="text-center fw-bold fs-5">or</span>
|
||||
|
||||
<div class="row mx-auto gap-3 mb-3 mt-3">
|
||||
<button type="button" class="rounded-pill col pe-3 btn btn-outline-danger">
|
||||
<i class="fa fa-google" aria-hidden="true"> Google</i>
|
||||
</button>
|
||||
<button type="button" class="rounded-pill col btn btn-outline-primary">
|
||||
<i class="fa fa-facebook-official" aria-hidden="true"> Facebook</i>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<span class="text-center justify-content-cente fw-bold fs-5">Have an account already?</span>
|
||||
|
||||
<div class="d-grid gap-2 mx-auto mt-3">
|
||||
<button type="button" class="rounded-pill col btn btn-outline-success">Login </button>
|
||||
</div>
|
||||
<br><br>
|
||||
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user