Files
2026-07-01 16:44:17 +03:00

33 lines
1.5 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<div class="container mb-5">
<form class="card" action="" method="post">
<div class="card-body p-6">
<div class="card-title" style="text-align: center;">PİSİ GNU/Linux <br> {{lang('user','Member_login')}}</div>
<div class="mb-3">
<label class="form-label"> {{lang('user','mailadress')}}</label>
<input type="email" class="form-control" aria-describedby="emailHelp" name="email" required placeholder="Kayıt olurken kullandığınız e-posta adresinizi girin">
</div>
<div class="mb-3">
<label class="form-label">
{{lang('user','password')}}
<a href="/member/password_forgot" class="float-right small">{{lang('user','forgot_password')}}</a>
</label>
<input type="password" name="pass" class="form-control" required placeholder="Şifrenizi girin">
</div>
<div class="mb-3">
<label class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input" name="remember" value="1">
<span class="custom-control-label">{{lang('user','remember_me')}}</span>
</label>
</div>
<div class="form-footer">
<input type="hidden" name="currentDate" value="{{date('Y-m-d')}}" >
<button type="submit" class="btn btn-primary btn-block">{{lang('user','login')}}</button>
</div>
</div>
</form>
<div class="text-center text-muted">
{{lang('user','No_Account_Yet')}} <a href="/member/register">{{lang('user','register')}}</a>
</div>
</div>