52 lines
1.1 KiB
HTML
52 lines
1.1 KiB
HTML
|
<!DOCTYPE html>
|
|||
|
<html>
|
|||
|
|
|||
|
<head>
|
|||
|
<style>
|
|||
|
body {
|
|||
|
height: 100%;
|
|||
|
margin: 0px;
|
|||
|
background-color: rgba(255, 255, 255, 0.3);
|
|||
|
position: relative;
|
|||
|
}
|
|||
|
|
|||
|
.error-text {
|
|||
|
background-color: rgb(102, 186, 51);
|
|||
|
width: 100%;
|
|||
|
display: inline-block;
|
|||
|
}
|
|||
|
|
|||
|
h1 {
|
|||
|
font-size: 16px;
|
|||
|
color: WHITE;
|
|||
|
font-weight: bold;
|
|||
|
margin-left: 15px;
|
|||
|
margin-top: 5px;
|
|||
|
margin-bottom: 5px;
|
|||
|
}
|
|||
|
|
|||
|
.context {
|
|||
|
margin-left: 5%;
|
|||
|
}
|
|||
|
|
|||
|
.loading {
|
|||
|
width: 100px;
|
|||
|
}
|
|||
|
</style>
|
|||
|
</head>
|
|||
|
|
|||
|
<body>
|
|||
|
<div class="error-text">
|
|||
|
<h1>Bağlantınızda bir sorun oluştu!</h1>
|
|||
|
</div>
|
|||
|
<div class="context">
|
|||
|
<p>Parolanız doğrulandı</p>
|
|||
|
<p>Bağlantınız yenileniyor...</p>
|
|||
|
<center style="margin-right: 5%; margin-top: 5%;">
|
|||
|
<img class="loading" src="images/loading.gif">
|
|||
|
</center>
|
|||
|
</form>
|
|||
|
</div>
|
|||
|
</body>
|
|||
|
|
|||
|
</html>
|