This repository has been archived by the owner on Jan 14, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsign-up.html
81 lines (70 loc) · 4.54 KB
/
sign-up.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
<!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>Sign-up</title>
<link rel="stylesheet" href="./assets/vendor/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="./assets/css/sign-up.css">
<link href="https://pro.fontawesome.com/releases/v5.6.3/css/all.css" rel="stylesheet">
<link rel="icon" type="image/x-icon" href="./assets/img/favicon.png">
</head>
<body>
<div class="page-content footer-clear">
<div class="container-fluid p-0">
<div class="blue-bg">
<div class="card-header border-0 d-flex flex-column justify-content-center">
<p class="mb-3 text-white fw-bold">Create Account</p>
<h6 class="mb-4 text-white">Be a DIVOC Health member! <i class="fas fa-heart text-theme heartBeat2" style="font-size: 14px;"></i></h6>
<!-- <img src="./assets/img/logo.png " alt="logo "> -->
</div>
</div>
</div>
<svg style="background-color: #f3f5fa;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="#2260ce" fill-opacity="1" d="M0,96L80,117.3C160,139,320,181,480,165.3C640,149,800,75,960,58.7C1120,43,1280,85,1360,106.7L1440,128L1440,0L1360,0C1280,0,1120,0,960,0C800,0,640,0,480,0C320,0,160,0,80,0L0,0Z"></path></svg>
<div class="container-fluid">
<div class="card-body rounded-xs py-0">
<div class="logo-div d-flex justify-content-center mb-5">
<img src="./assets/img/logo.png" alt="logo">
</div>
<div class="form-container">
<form action="#" class="form-horizontal" id="signupForm">
<div class="form-group rounded-xs">
<span class="input-icon"><i class="fa fa-user"></i></span>
<input class="form-control" type="text" placeholder="First Name" name="" required>
</div>
<div class="form-group rounded-xs">
<span class="input-icon"><i class="fa fa-user"></i></span>
<input class="form-control" type="text" placeholder="Last Name" name="" required>
</div>
<div class=" form-group rounded-xs ">
<span class="input-icon "><i class="fas fa-phone " style="-webkit-transform: scaleX(-1);transform: scaleX(-1); "></i></span>
<input class="form-control " type="tel " placeholder="Phone No. " name="" required>
</div>
<div class="form-group rounded-xs ">
<span class="input-icon "><i class="fa fa-envelope "></i></span>
<input class="form-control " type="email " placeholder="Email " name="" required>
</div>
<div class="sign-UpBtn row mt-4 ">
<!-- <div class="col-6 d-flex align-items-center justify-content-center ">
<h3 class="m-0 ps-3 " style="color: #2363d5; ">Sign Up</h3>
</div> -->
<div class="col-12 d-flex align-items-center justify-content-center ">
<button class="btn signin mb-0 ">
<div class="m-auto ">
<i class="fas fa-arrow-right fa-2x "></i>
</div>
</button>
</div>
<p class="text-muted text-center mt-4 mb-0 ">Already a Member? <a href="./sign-in.html " style="color: #2363d5; ">Sign In</a></p>
</div>
</form>
</div>
</div>
</div>
</div>
<svg class="footer-wave " xmlns="http://www.w3.org/2000/svg " viewBox="0 0 1440 320 "><path fill="#2260ce " fill-opacity="1 " d="M0,128L60,154.7C120,181,240,235,360,245.3C480,256,600,224,720,186.7C840,149,960,107,1080,96C1200,85,1320,107,1380,117.3L1440,128L1440,320L1380,320C1320,320,1200,320,1080,320C960,320,840,320,720,320C600,320,480,320,360,320C240,320,120,320,60,320L0,320Z "></path></svg>
<script src="./assets/vendor/jquery/jquery.min.js "></script>
<script src="./assets/vendor/bootstrap/js/bootstrap.min.js "></script>
</body>
</html>