56 lines
1.9 KiB
PHP
56 lines
1.9 KiB
PHP
<!DOCTYPE html>
|
||
<html>
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<title>В личном кабинете проводятся работы по настройке</title>
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<link rel="stylesheet" href="comingSoon/bootstrap.min.css">
|
||
</head>
|
||
<style>
|
||
.login-page {
|
||
margin-top: 5vh;
|
||
height: 90vh;
|
||
width: 100%;
|
||
background: #005B33;
|
||
border-radius: 10px;
|
||
}
|
||
|
||
.hello-text {
|
||
color: white;
|
||
font-size: 1.6em;
|
||
}
|
||
|
||
.btn-link, .btn-link:hover {
|
||
display: block;
|
||
color: #fff;
|
||
font-size: 16px;
|
||
line-height: 19px;
|
||
text-decoration: none;
|
||
padding: 10px 20px;
|
||
margin: 0 -20px;
|
||
margin-bottom: 1px;
|
||
border-radius: 10px;
|
||
}
|
||
|
||
</style>
|
||
<body>
|
||
|
||
<div class="container login-page">
|
||
<div class="content-fluid auth border-radius py-3 px-5 h-100">
|
||
<div class="row justify-content-md-center h-100">
|
||
<div class="col-md-6 h-md-100 align-self-center">
|
||
<div class="row align-items-center h-md-100">
|
||
<div class="col-12 p-0">
|
||
<div class="hello-text">
|
||
В личном кабинете проводятся работы по настройке.
|
||
</div>
|
||
<br>
|
||
<a href="//sova.infoclinica.ru/" class="btn btn-link align-self-center border mt-2">На старую версию личного кабинета</a>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</body>
|
||
</html> |