forked from MakTsy/SolaceNews
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ProfilePage.html
120 lines (111 loc) · 5.14 KB
/
ProfilePage.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
<!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/HideElement.js"></script>
<script crossorigin="anonymous" src="https://kit.fontawesome.com/9d8814d242.js"></script>
<title>Profile</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="./MainPage.html">Main</a></li>
<li><a href="./TopicPage.html">News</a></li>
<li><a href="./TopicPage.html">Business</a></li>
<li><a href="./TopicPage.html">Technologies</a></li>
<li><a href="./PremiumPage.html">Premium</a></li>
</ul>
</div>
<h1>Solace News</h1>
</header>
<main class="profile_page_content">
<div class="title_page">
<h2>Account</h2>
<hr class="big_line"/>
</div>
<div class="profile-popup" id="manage_payment_info_pop_up">
<div class="back_to_the_account" onclick="closePopUp('manage_payment_info_pop_up')">
<img class="backButton" onclick="openForm()" src="img/BackToTheAccountButton.svg">
<p class="back_to_the_account">Back to the
account</p>
</div>
<div class="form_manage_payment_info">
<img src="img/CardIcon.svg" onclick="location.href='EditAddCreditCard.html'">
<h4>Add a card</h4>
<hr class="big_line"/>
<div class="edit_card" id="mono_card">
<h5 style="margin-bottom: 2px">Monobank</h5>
<div class="credit_card">
<img src="img/master_card.svg">
<p>**** **** **** 6539</p>
</div>
<div class="edit_buttons">
<button class="edit_buuton" onclick="location.href='EditAddCreditCard.html'">Edit</button>
<button class="delete_button" onclick="HideElement('mono_card')">Delete</button>
</div>
</div>
<div class="edit_card" id="privat_bank_card">
<h5 style="margin-bottom: 2px">PrivatBank</h5>
<div class="credit_card">
<img src="img/master_card.svg">
<p>**** **** **** 6539</p>
</div>
<div class="edit_buttons">
<button class="edit_buuton" onclick="location.href='EditAddCreditCard.html'">Edit</button>
<button class="delete_button" onclick="HideElement('privat_bank_card')">Delete</button>
</div>
</div>
<hr class="big_line"/>
</div>
</div>
<div>
<p class="personal_info left_name">Personal Data</p>
<p class="personal_info right_name">Oleg Biden</p>
<hr class="mini_line"/>
<p class="email">[email protected]</p>
<p class="password">Password:*********</p>
<hr class="big_line margin_line"/>
<div class="credit_cards">
<div class="credit_card">
<img class="master_card_img" src="img/master_card.svg">
<p>**** **** **** 6532</p>
</div>
<p class="payment_info" id="manage_payment_info" onclick="openPopUp('manage_payment_info_pop_up')"><a
href="#">Manage payment info</a></p>
</div>
<p class="margin_line">Your next billing date is March 18, 2021</p>
</div>
<div class="plan_details">
<hr class="big_line"/>
<p class="personal_info left_name">Plan Details</p>
<p class="plan_detail">Premium for 5$ per month</p>
<hr class="big_line"/>
</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>