ekoetki/views/login.ejs

41 lines
2.2 KiB
Plaintext
Raw 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.

<%-include("./partials/header.ejs") %>
<div class="">
<main class="w-100 p-0">
<div class="container-fluid">
<div class="row">
<div class="col-12 p-0">
<div class="login-form-container">
<div class="mb-4">
<a class="logo" href="index.html">
<img alt="#" src="/logo.png" class="w-100 h-100">
</a>
</div>
<div class="form_container">
<form class="app-form" method="post" action="/login" enctype="multipart/form-data">
<div class="mb-3 text-center">
<h3>Hesabınıza Giriş yapın</h3>
<p>
EkoEtki: Doğadaki izinizi ölçen, çevresel farkındalığı puanlayan akıllı ekolojik karne sistemidir
</p>
</div>
<div class="mb-3">
<label class="form-label" for="emailId">E-Posta Adresiniz</label>
<input class="form-control" type="email" id="emailId" autocomplete="email">
</div>
<div class="mb-3">
<label class="form-label" for="password">Şifreniz</label>
<input class="form-control" placeholder="Şifreniz" type="password" min="6" max="20" required name="password" autocomplete="current-password">
</div>
<div>
<button class="btn btn-primary w-100" type="submit">Giriş Yap</button>
<a class="btn btn-primary w-100 mt-1" href="/register">Kayıt Ol</a>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</main>
</div>
<%-include("./partials/footer.ejs") %>