59 lines
3.0 KiB
PHP
59 lines
3.0 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en" class="h-100">
|
|
|
|
@include('head')
|
|
|
|
<body class="h-100">
|
|
<div class="authincation h-100">
|
|
<div class="container h-100">
|
|
<div class="row justify-content-center h-100 align-items-center">
|
|
<div class="col-md-6">
|
|
|
|
<div class="authincation-content">
|
|
<div class="row no-gutters">
|
|
<div class="col-xl-12">
|
|
<div class="auth-form">
|
|
<div class="text-center mb-3">
|
|
<a href="index.html"><img src="images/logo-full-POSit!.png" alt=""></a>
|
|
</div>
|
|
<h4 class="text-center mb-4 text-white">Sign up your account</h4>
|
|
<form method="POST" enctype="multipart/form-data"
|
|
action="{{ url('/prosesregis') }}">
|
|
@csrf
|
|
<!-- <div class="form-group">
|
|
<label class="mb-1 text-white"><strong>Phone Number</strong></label>
|
|
<input type="number" class="form-control" placeholder="Ex:081212345678">
|
|
</div> -->
|
|
<!-- <div class="form-group">
|
|
<label class="mb-1 text-white"><strong>Email</strong></label>
|
|
<input type="email" class="form-control" placeholder="hello@example.com">
|
|
</div> -->
|
|
<div class="form-group">
|
|
<label class="mb-1 text-white"><strong>PIN</strong></label>
|
|
<input type="nohp" class="form-control" pattern="[0-9]*"
|
|
inputmode="numeric" name="nohp" placeholder="******"
|
|
value="<?php echo $nohp; ?>" hidden>
|
|
<input type="password" class="form-control" pattern="[0-9]*"
|
|
inputmode="numeric" maxlength="6" name="pin" placeholder="******"
|
|
required>
|
|
</div>
|
|
<div class="text-center mt-4">
|
|
<button type="submit" class="btn bg-white text-primary btn-block">Sign me
|
|
up</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
@include('footer')
|
|
|
|
</body>
|
|
|
|
</html>
|