-
Notifications
You must be signed in to change notification settings - Fork 0
/
profile-edit-card.html
59 lines (58 loc) · 2.7 KB
/
profile-edit-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
<!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">
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/@mdi/[email protected]/css/materialdesignicons.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.13/css/select2.min.css">
<link rel="stylesheet" href="css/main.css">
<title>Document</title>
</head>
<body>
<div class="sign-wrapper">
<a href="#" class="sign-back">
<i class="mdi mdi-arrow-left"></i> Back to Ineichen
</a>
<div class="sign-form">
<h1 class="title">Credit card details</h1>
<div class="sign-form__profile-note">
Please provide a credit card that is billed to your home address.
</div>
<div class="sign-form__fields">
<div class="c-field">
<input type="text" class="c-field__input">
<label class="c-field__label">Full name of card</label>
</div>
<div class="c-field">
<input type="text" class="c-field__input">
<label class="c-field__label">Card number</label>
</div>
<div class="sign-form__double">
<div class="c-field">
<input type="text" class="c-field__input">
<label class="c-field__label">MM/YY</label>
</div>
<div class="c-field">
<input type="text" class="c-field__input">
<label class="c-field__label">CVV</label>
</div>
</div>
</div>
<div class="sign-form__profile-note">
Ineichen asks for your credit card and billing details for identify <br>
verification. A temporary charge will be issued to your card which will <br>
be refunded. Your credit card will not be stored.
</div>
<div class="sign-form__btns">
<a href="" class="sign-form__btn c-button c-button_blue c-button_filled c-button_full">Continue</a>
<a href="" class="sign-form__btn c-button c-button_grey c-button_outline c-button_full">Back</a>
</div>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.13/js/select2.min.js"></script>
<script src="js/smooth-scroll.js"></script>
<script src="js/main.js"></script>
</body>
</html>