added messages list, new client form, logic for client Apps plus others
This commit is contained in:
52
resources/views/client-auth/activation-form.blade.php
Normal file
52
resources/views/client-auth/activation-form.blade.php
Normal file
@@ -0,0 +1,52 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>CML Client Portal | Reset Password</title>
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css">
|
||||
|
||||
<style>
|
||||
body { background-color: #f8f9fa; }
|
||||
.reset-container { margin-top: 100px; max-width: 400px; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<!-- Kwesi the Grey -->
|
||||
<div class="container d-flex justify-content-center">
|
||||
<div class="reset-container w-100">
|
||||
<div class="card shadow-sm">
|
||||
<div class="card-body p-4">
|
||||
<div class="text-center mb-4">
|
||||
<h3 class="fw-bold">Account Activation Form</h3>
|
||||
<p class="text-muted">Fill the form to activate your account</p>
|
||||
</div>
|
||||
@include('commons.notifications')
|
||||
<form action="{{ url('client-activation') }}" method="POST">
|
||||
@csrf
|
||||
<input type="hidden" name="hash" value="{{ $hash }}">
|
||||
<div class="mb-3">
|
||||
<label for="password" class="form-label">Password</label>
|
||||
<input type="password" class="form-control form-control-lg" id="password" name="password" placeholder="***********" required autofocus>
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label for="passwordConfirm" class="form-label">Confirm Password</label>
|
||||
<input type="password" class="form-control form-control-lg" id="passwordConfirm" name="password_confirmation" placeholder="***********" required autofocus>
|
||||
</div>
|
||||
<div class="d-grid gap-2">
|
||||
<button type="submit" class="btn btn-primary btn-lg">Submit</button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="text-center mt-3 text-muted small">
|
||||
© Click Mobile SMS Client Portal
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user