Files
vvveb-cms/static/Vvvebjs/demo/landing/src/user/login.html
2026-05-17 21:09:32 +08:00

91 lines
3.1 KiB
HTML
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('../_includes/html-head.html', {"title": "Vvveb - Login", "path":"../"})
<body class="login">
@@include('../_includes/header.html')
<main id="site-content" role="main">
<div class="container">
<div class="row justify-content-center">
<div class="col-12 col-md-9 col-xl-6">
<div class="row">
<div class="user-card mx-auto">
<div class="card card-default my-4">
<div class="card-header bg-body">
<h1 class="mb-1 h2 fw-bold">Sign in</h1>
<p class="text-muted">Welcome back! Enter your email to get started.</p>
@@include('../_includes/notifications.html', {type:"login"})
</div>
<div class="card-body">
<form action="" method="post" enctype="multipart/form-data" id="login-form">
<input type="hidden" name="csrf" data-v-csrf>
<div class="mb-3">
<div class="input-group">
<span class="input-group-text bg-body pe-1"> <i class="la la-envelope"></i> </span>
<input type="email" name="email" value="" placeholder=" " id="input-email" class="form-control label-over border-start-0" required>
<label class="col-form-label ms-4" for="input-email">E-Mail Address</label>
</div>
</div>
<div class="mb-3">
<div class="input-group">
<span class="input-group-text bg-body pe-1"> <i class="la la-lock"></i> </span>
<input type="password" minlength="4" autocorrect="off" autocomplete="current-password" class="form-control label-over border-start-0" placeholder=" " id="password" name="password" value="" aria-label="Password" required>
<label class="col-form-label ms-4" for="password">Password</label>
<button class="btn px-3 border border-start-0" type="button" onclick="togglePasswordInput(this, 'password')"><i class="la la-eye-slash"></i></button>
</div>
</div>
<div class="mb-3 clearfix">
<div class="form-check float-start">
<input class="form-check-input" type="checkbox" value="" id="rememberme">
<label class="form-check-label" for="rememberme">
Remember me
</label>
</div>
<a href="#recover" data-v-url="user/reset/index" class="float-end">Forgot your password?</a>
</div>
<div class="mb-3 clearfix">
<button type="submit" value="Login" class="btn btn-primary w-100 btn-login my-3" ><span>Login</span><i class="la la-arrow-right ms-2"></i></button>
</div>
<input type="hidden" name="redirect" value="">
</form>
<div class="mt-2">Dont have an account? <a href="user/signup" data-v-url="user/signup/index" >Create user account</a></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</main>
@@include('../_includes/footer.html')
@@include('../_includes/footer-scripts.html')
</body>
</html>