23 lines
873 B
PHP
23 lines
873 B
PHP
<!DOCTYPE html>
|
|
<html lang="ar" dir="rtl">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title><?= $this->escape($title ?? 'Auth') ?> - ScoutIQ</title>
|
|
<link rel="stylesheet" href="/assets/css/app.css">
|
|
<link href="https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700;800&display=swap" rel="stylesheet">
|
|
<style>
|
|
body { font-family: 'Tajawal', sans-serif; text-align: right; }
|
|
.form-group { text-align: right; }
|
|
.form-label { text-align: right; display: block; }
|
|
.form-control { text-align: right; }
|
|
.alert { text-align: right; flex-direction: row-reverse; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div style="flex: 1; display: flex; align-items: center; justify-content: center; padding: 20px;">
|
|
<?= $content ?>
|
|
</div>
|
|
</body>
|
|
</html>
|