forked from MakTsy/SolaceNews
-
Notifications
You must be signed in to change notification settings - Fork 0
/
EditAddCreditCard.html
82 lines (76 loc) · 3.3 KB
/
EditAddCreditCard.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link href="styles/toggle_header.css" rel="stylesheet">
<link href="https://fonts.gstatic.com" rel="preconnect">
<link href="https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap"
rel="stylesheet">
<link href="https://fonts.gstatic.com" rel="preconnect">
<link href="https://fonts.googleapis.com/css2?family=Questrial&display=swap" rel="stylesheet">
<link href="styles/toggle_header.css" rel="stylesheet">
<link href="styles/style.css" rel="stylesheet">
<link href="styles/profile_page.css" rel="stylesheet">
<link href="styles/footer.css" rel="stylesheet">
<link href="styles/profile_pop_up.css" rel="stylesheet">
<script src="https://use.fontawesome.com/6c2a297f2f.js"></script>
<script src="scripts/popUp.js"></script>
<script src="scripts/SaveCard.js"></script>
<script src="scripts/validateCardData.js"></script>
<script src="scripts/color.js"></script>
<script crossorigin="anonymous" src="https://kit.fontawesome.com/9d8814d242.js"></script>
<title>Credit Card</title>
</head>
<body>
<div class="main_container">
<header class="header">
<input class="toggler" type="checkbox">
<div class="hamburger">
<div></div>
</div>
<div class="menu">
<ul>
<li><a href="news">News</a></li>
<li><a href="business">Business</a></li>
<li><a href="technologies">Technologies</a></li>
<li><a href="premium">Premium</a></li>
</ul>
</div>
<h1>Solace News</h1>
</header>
<main class="profile_page_content">
<fieldset class="card_creds">
<input class="text_input card_number" id="card_number" name="" onclick="blackBorder(this)" type="text">
<div class="right_block">
<div class="parameter">
<label>Expiration Date:</label>
<input class="text_input expiration" id="expiration" name="" onclick="blackBorder(this)"
type="text_input">
</div>
<div class="parameter">
<label>CVV:</label>
<input class="text_input cvv" id="cvv" name="" onclick="blackBorder(this)" type="password">
</div>
</div>
<img class="master_card_img" src="img/master_card.svg">
<div class="successfully_saved_form" id="success_form">
<p>I have added card successfully!</p>
</div>
</fieldset>
<div class="button_set">
<button class="add_photo cancel" onclick="location.href='ProfilePage.html'">
<p>Cancel</p>
</button>
<button class="add_photo save" id="red" onclick="SaveCard()">
<p>Save</p>
</button>
</div>
</main>
<footer class="footer">
<p>© 2021 Solace News & Media Limited or its affiliated companies. All rights reserved.</p>
<a href="https://www.facebook.com/"><i class="fab fa-facebook-square"></i></a>
<a href="https://twitter.com/DmytroKuleba"><i class="fab fa-twitter-square"></i></a>
</footer>
</div>
</body>
</html>