This commit is contained in:
Frank John Begornia
2023-12-27 20:39:40 +08:00
parent 625d11521f
commit 3394c94677
48 changed files with 2570 additions and 660 deletions

View File

@@ -1,7 +1,7 @@
@extends('merchbay_main')
@section('main-content')
<style>
{{-- <style>
.error {
color: red;
}
@@ -28,7 +28,6 @@
<div class="mb-3">
<label for="exampleInputEmail1" class="form-label">Email address</label>
<input type="email" class="form-control" name="email" value="{{ old('email') }}" title="Please enter your email address" placeholder="example@gmail.com">
<!-- <div id="emailHelp" class="form-text">We'll never share your email with anyone else.</div> -->
</div>
<div class="mb-3">
<label for="exampleInputPassword1" class="form-label">Password</label>
@@ -51,5 +50,66 @@
</div>
</div>
</div>
</div>
</div> --}}
<section class="login">
<div class="container-fluid">
<div class="row align-items-center">
<div class="col-lg-6">
<div class="row gx-5 justify-content-center align-items-center">
<div class="col-lg-8 text-start">
<h3>Sign to start creating custom merch</h3>
<!-- <div class="horizontal-divider bg-yellow"></div> -->
<p>
<router-link to="/create-account">Create a free account</router-link>
or login to start designing
</p>
</div>
<div class="col-lg-8 mt-5">
<form action="">
<div class="mb-3">
<input
type="text"
class="form-control form-control-lg contact-input-custom"
placeholder="Username*"
required
/>
</div>
<div class="mb-3">
<input
type="password"
class="form-control form-control-lg contact-input-custom"
required
placeholder="Password*"
/>
</div>
<!-- <div class="mb-3">
<input
type="text"
class="form-control form-control-lg contact-input-custom"
id="exampleFormControlInput1"
placeholder="Phone Number*"
/>
</div>
<div class="mb-3">
<textarea
class="form-control form-control-lg contact-input-custom"
required
rows="5"
placeholder="What can we help you with?"
></textarea>
</div> -->
<div class="mb-3">
<button class="btn btn-lg btn-contact w-100">Submit</button>
</div>
</form>
</div>
</div>
</div>
<div class="col login-page-right"></div>
</div>
</div>
</section>
@endsection