Deploy on 2026-06-05 17:32:29

This commit is contained in:
Hamza-Ayed
2026-06-05 17:32:29 +03:00
parent 0657296c38
commit e5074451af
6 changed files with 25 additions and 119 deletions

View File

@@ -1,12 +1,12 @@
<div class="glass-panel" style="width: 100%; max-width: 440px; padding: 40px; display: flex; flex-direction: column; gap: 30px;">
<div style="text-align: center; display: flex; flex-direction: column; gap: 10px;">
<h1 style="font-size: 2.2rem; font-weight: 800; background: var(--primary-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;">Create Account</h1>
<p style="color: var(--text-muted); font-size: 0.95rem;">Join ScoutIQ Investor Platform</p>
<h1 style="font-size: 2.2rem; font-weight: 800; background: var(--primary-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;">إنشاء حساب</h1>
<p style="color: var(--text-muted); font-size: 0.95rem;">انضم إلى منصة استخبارات المستثمرين ScoutIQ</p>
</div>
<?php if ($flashError = $this->session->getFlash('error')): ?>
<div class="alert alert-error">
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" style="margin-right: 10px;"><circle cx="12" cy="12" r="10"></circle><line x1="12" y1="8" x2="12" y2="12"></line><line x1="12" y1="16" x2="12.01" y2="16"></line></svg>
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" style="margin-left: 10px;"><circle cx="12" cy="12" r="10"></circle><line x1="12" y1="8" x2="12" y2="12"></line><line x1="12" y1="16" x2="12.01" y2="16"></line></svg>
<span><?= $this->escape($flashError) ?></span>
</div>
<?php endif; ?>
@@ -15,24 +15,24 @@
<input type="hidden" name="_csrf" value="<?= $this->session->getCsrfToken() ?>">
<div class="form-group">
<label class="form-label" for="name">Full Name</label>
<label class="form-label" for="name">الاسم الكامل</label>
<input type="text" name="name" id="name" class="form-control" placeholder="John Doe" required autocomplete="name">
</div>
<div class="form-group">
<label class="form-label" for="email">Email Address</label>
<label class="form-label" for="email">البريد الإلكتروني</label>
<input type="email" name="email" id="email" class="form-control" placeholder="name@domain.com" required autocomplete="username">
</div>
<div class="form-group">
<label class="form-label" for="password">Password</label>
<label class="form-label" for="password">كلمة المرور</label>
<input type="password" name="password" id="password" class="form-control" placeholder="••••••••" required autocomplete="new-password">
</div>
<button type="submit" class="btn btn-primary" style="width: 100%; margin-top: 10px;">Create Account</button>
<button type="submit" class="btn btn-primary" style="width: 100%; margin-top: 10px;">إنشاء حساب</button>
</form>
<div style="text-align: center; font-size: 0.9rem; color: var(--text-muted);">
Already have an account? <a href="/login" style="font-weight: 600;">Sign In</a>
لديك حساب بالفعل؟ <a href="/login" style="font-weight: 600;">تسجيل الدخول</a>
</div>
</div>