-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.html
73 lines (58 loc) · 3.1 KB
/
signup.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400&display=swap" rel="stylesheet">
<!-- Font Awesome -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet"/>
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" rel="stylesheet"/>
<!-- MDB -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/mdb-ui-kit/6.1.0/mdb.min.css" rel="stylesheet"/>
<!-- Style CSS -->
<link rel="stylesheet" href="css/login.css">
<title>Sign Up</title>
</head>
<body>
<section class="vh-100">
<div class="container-fluid">
<div class="row">
<div class="col-sm-6 text-black">
<div class="px-5 ms-xl-4">
<i class="fas fa-car fa-2x me-3 pt-5 mt-xl-4" style="color: #0D28A6;"></i>
<span class="h1 fw-bold mb-0">Binar Car Rental</span>
</div>
<div class="d-flex align-items-center h-custom-2 px-5 ms-xl-4 mt-5 pt-5 pt-xl-0 mt-xl-n5">
<form style="width: 23rem;">
<h3 class="fw-normal mb-3 pb-3" style="letter-spacing: 1px;">Sign Up</h3>
<div class="form-outline mb-4">
<input type="email" id="form2Example18" class="form-control form-control-lg" placeholder="Nama Lengkap" />
<label class="form-label" for="form2Example18" style="color: black; font-size: 15px;">Name*</label>
</div>
<div class="form-outline mb-4">
<input type="email" id="form2Example18" class="form-control form-control-lg" placeholder="email@gmail.com" />
<label class="form-label" for="form2Example18" style="color: black; font-size: 15px;">Email*</label>
</div>
<div class="form-outline mb-4">
<input type="password" id="form2Example28" class="form-control form-control-lg" placeholder="6+ karakter"/>
<label class="form-label" for="form2Example28" style="color: black; font-size: 15px;">Create Password*</label>
</div>
<div class="pt-1 mb-4">
<button class="btn btn-info btn-lg btn-block" type="button" style="background-color:#0D28A6">Sign Up</button>
</div>
<p>Already have an account? <a href="login.html" class="link-info"><u style="color: #0D28A6;">Sign In here</u></a></p>
</form>
</div>
</div>
<div class="col-sm-6 px-0 d-none d-sm-block">
<img src="img/car3.jpg"
alt="Login image" class="w-100 vh-100" style="object-fit: cover; object-position: left;">
</div>
</div>
</div>
</section>
<!-- MDB -->
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mdb-ui-kit/6.1.0/mdb.min.js"></script>
</body>
</html>