-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdelivery-address-from-card.html
136 lines (121 loc) · 4.65 KB
/
delivery-address-from-card.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<title>Material Design for Bootstrap</title>
<!-- MDB icon -->
<link rel="icon" href="img/mdb-favicon.ico" type="image/x-icon" />
<!-- Font Awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.2/css/all.css" />
<!-- Google Fonts Roboto -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap" />
<!-- MDB -->
<link rel="stylesheet" href="css/bootstrap-address-form.min.css" />
</head>
<body>
<!-- Start your project here-->
<style>
.gradient-custom {
background: -webkit-linear-gradient(left, #3931af, #00c6ff);
}
.card-custom {
border-bottom-left-radius: 10% 50%;
border-top-left-radius: 10% 50%;
background-color: #f8f9fa ;
}
.input-custom {
background-color: white ;
}
.white-text {
color: hsl(52, 0%, 98%);
font-weight: 100 ;
font-size: 14px;
}
.back-button {
background-color: hsl(52, 0%, 98%);
font-weight: 700;
color: black ;
margin-top: 50px ;
}
</style>
<div class="row mt-3 mx-3" style="margin-top:25px ;">
<div class="col-md-3">
<div style="margin-top: 50px; margin-left: 10px;" class="text-center">
<i id="animationDemo" data-mdb-animation="slide-right" data-mdb-toggle="animation"
data-mdb-animation-reset="true" data-mdb-animation-start="onScroll"
data-mdb-animation-on-scroll="repeat" class="fas fa-3x fa-shipping-fast text-white"></i>
<h3 class="mt-3 text-white">Welcome</h3>
<p class="white-text">You are 30 seconds away from compleating your order!</p>
</div>
<div class="text-center">
<button type="submit" class="btn btn-white btn-rounded back-button">Go back</button>
</div>
</div>
<div class="col-md-9 justify-content-center">
<div class="card card-custom pb-4">
<div class="card-body mt-0 mx-5">
<div class="text-center mb-3 pb-2 mt-3">
<h4 style="color: #495057 ;">Delivery Details</h4>
</div>
<form class="mb-0">
<div class="row mb-4">
<div class="col">
<div class="form-outline">
<input type="text" id="form9Example1" class="form-control input-custom" />
<label class="form-label" for="form9Example1">First name</label>
</div>
</div>
<div class="col">
<div class="form-outline">
<input type="text" id="form9Example2" class="form-control input-custom" />
<label class="form-label" for="form9Example2">Last name</label>
</div>
</div>
</div>
<div class="row mb-4">
<div class="col">
<div class="form-outline">
<input type="text" id="form9Example3" class="form-control input-custom" />
<label class="form-label" for="form9Example3">City</label>
</div>
</div>
<div class="col">
<div class="form-outline">
<input type="text" id="form9Example4" class="form-control input-custom" />
<label class="form-label" for="form9Example4">Zip</label>
</div>
</div>
</div>
<div class="row mb-4">
<div class="col">
<div class="form-outline">
<input type="text" id="form9Example6" class="form-control input-custom" />
<label class="form-label" for="form9Example6">Address</label>
</div>
</div>
<div class="col">
<div class="form-outline">
<input type="email" id="typeEmail" class="form-control input-custom" />
<label class="form-label" for="typeEmail">Email</label>
</div>
</div>
</div>
<div class="float-end ">
<!-- Submit button -->
<button type="submit" class="btn btn-primary btn-rounded"
style="background-color: #0062CC ;">Place order</button>
</div>
</form>
</div>
</div>
</div>
</div>
<!-- End your project here-->
<!-- MDB -->
<script type="text/javascript" src="js/mdb.min.js"></script>
<!-- Custom scripts -->
<script type="text/javascript"></script>
</body>
</html>