-
Notifications
You must be signed in to change notification settings - Fork 0
/
success.html
55 lines (48 loc) · 1.39 KB
/
success.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
<!DOCTYPE html>
<html lang="ar">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>تم التسجيل بنجاح</title>
<style>
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-color: #55efc4;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.message-container {
background-color: white;
padding: 40px;
border-radius: 15px;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
text-align: center;
}
.message-container h2 {
margin-bottom: 10px;
color: #2d3436;
}
.message-container p {
margin-bottom: 20px;
}
.message-container a {
text-decoration: none;
color: #0984e3;
font-weight: bold;
}
.message-container a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="message-container">
<h2>تم التسجيل بنجاح!</h2>
<p>مرحبًا بك في موقعنا. يمكنك الآن <a href="login.php">تسجيل الدخول</a>.</p>
</div>
</body>
</html>