Update settings.html
Browse files- settings.html +76 -1
settings.html
CHANGED
@@ -93,6 +93,61 @@
|
|
93 |
margin: 0 auto 20px auto;
|
94 |
}
|
95 |
</style>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
96 |
</head>
|
97 |
<body>
|
98 |
<div class="container">
|
@@ -140,8 +195,25 @@
|
|
140 |
</div>
|
141 |
<div class="form-check">
|
142 |
<input type="checkbox" id="newsletter" required>
|
143 |
-
<label for="newsletter"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
144 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
145 |
<button type="submit" class="btn-primary">ПЕРЕЙТИ К ОПЛАТЕ</button>
|
146 |
</form>
|
147 |
|
@@ -161,6 +233,9 @@
|
|
161 |
|
162 |
|
163 |
|
|
|
|
|
|
|
164 |
|
165 |
|
166 |
|
|
|
93 |
margin: 0 auto 20px auto;
|
94 |
}
|
95 |
</style>
|
96 |
+
|
97 |
+
<style>
|
98 |
+
|
99 |
+
.modal {
|
100 |
+
display: none; /* По умолчанию скрыто */
|
101 |
+
position: fixed;
|
102 |
+
z-index: 1000;
|
103 |
+
left: 0;
|
104 |
+
top: 0;
|
105 |
+
width: 100%;
|
106 |
+
height: 100%;
|
107 |
+
background-color: rgba(0,0,0,0.5); /* Полупрозрачный фон */
|
108 |
+
}
|
109 |
+
|
110 |
+
.modal-content {
|
111 |
+
background-color: #000;
|
112 |
+
color: white;
|
113 |
+
border-radius: 10px;
|
114 |
+
padding: 20px;
|
115 |
+
position: absolute;
|
116 |
+
top: 50%;
|
117 |
+
left: 50%;
|
118 |
+
transform: translate(-50%, -50%);
|
119 |
+
max-width: 80%;
|
120 |
+
max-height: 80%;
|
121 |
+
overflow-y: auto;
|
122 |
+
box-shadow: 0 0 20px rgba(0,0,0,0.2);
|
123 |
+
}
|
124 |
+
|
125 |
+
.close {
|
126 |
+
color: orange;
|
127 |
+
float: right;
|
128 |
+
font-size: 30px;
|
129 |
+
font-weight: bold;
|
130 |
+
cursor: pointer;
|
131 |
+
}
|
132 |
+
|
133 |
+
.close:hover,
|
134 |
+
.close:focus {
|
135 |
+
color: darkorange;
|
136 |
+
text-decoration: none;
|
137 |
+
cursor: pointer;
|
138 |
+
}
|
139 |
+
|
140 |
+
.modal-content iframe {
|
141 |
+
width: 100%;
|
142 |
+
height: 100%;
|
143 |
+
border: none;
|
144 |
+
}
|
145 |
+
|
146 |
+
|
147 |
+
|
148 |
+
</style>
|
149 |
+
|
150 |
+
|
151 |
</head>
|
152 |
<body>
|
153 |
<div class="container">
|
|
|
195 |
</div>
|
196 |
<div class="form-check">
|
197 |
<input type="checkbox" id="newsletter" required>
|
198 |
+
<label for="newsletter">Согласие на email рассылку</label>
|
199 |
+
</div>
|
200 |
+
|
201 |
+
|
202 |
+
|
203 |
+
|
204 |
+
<div id="privacyModal" class="modal">
|
205 |
+
<div class="modal-content">
|
206 |
+
<span class="close">×</span>
|
207 |
+
<iframe src="https://riverpsy.com/policy" frameborder="0"></iframe>
|
208 |
+
</div>
|
209 |
</div>
|
210 |
+
|
211 |
+
<a href="#" id="privacyPolicyLink">Политика конфиденциальности</a>
|
212 |
+
|
213 |
+
|
214 |
+
|
215 |
+
|
216 |
+
|
217 |
<button type="submit" class="btn-primary">ПЕРЕЙТИ К ОПЛАТЕ</button>
|
218 |
</form>
|
219 |
|
|
|
233 |
|
234 |
|
235 |
|
236 |
+
|
237 |
+
|
238 |
+
|
239 |
|
240 |
|
241 |
|