-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
60db865
commit c03f5d0
Showing
7 changed files
with
129 additions
and
134 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -56,6 +56,20 @@ public function run(): void | |
'email' => '[email protected]', | ||
'password' => Hash::make('123456'), | ||
'created_at' => date("Y-m-d H:i:s") | ||
], | ||
[ | ||
'codigo' => 'Paula', | ||
'name' => 'Paula Miranda', | ||
'email' => '[email protected]', | ||
'password' => Hash::make('123456'), | ||
'created_at' => date("Y-m-d H:i:s") | ||
], | ||
[ | ||
'codigo' => 'Mih', | ||
'name' => 'Michele', | ||
'email' => '[email protected]', | ||
'password' => Hash::make('123456'), | ||
'created_at' => date("Y-m-d H:i:s") | ||
] | ||
]); | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
<div class="container"> | ||
<div class="card o-hidden border-0 shadow-lg my-5"> | ||
<div class="card-body p-0"> | ||
<!-- Nested Row within Card Body --> | ||
<div class="row"> | ||
<div class="col-lg-12"> | ||
<div class="p-5"> | ||
<div class="text-center"> | ||
<h1 class="h4 text-gray-900 mb-4">Create an Account!</h1> | ||
</div> | ||
<form class="user"> | ||
<div class="form-group row"> | ||
<div class="col-sm-6 mb-3 mb-sm-0"> | ||
<input type="text" class="form-control form-control-user" id="exampleFirstName" | ||
placeholder="First Name"> | ||
</div> | ||
<div class="col-sm-6"> | ||
<input type="text" class="form-control form-control-user" id="exampleLastName" | ||
placeholder="Last Name"> | ||
</div> | ||
</div> | ||
<div class="form-group"> | ||
<input type="email" class="form-control form-control-user" id="exampleInputEmail" | ||
placeholder="Email Address"> | ||
</div> | ||
<div class="form-group row"> | ||
<div class="col-sm-6 mb-3 mb-sm-0"> | ||
<input type="password" class="form-control form-control-user" | ||
id="exampleInputPassword" placeholder="Password"> | ||
</div> | ||
<div class="col-sm-6"> | ||
<input type="password" class="form-control form-control-user" | ||
id="exampleRepeatPassword" placeholder="Repeat Password"> | ||
</div> | ||
</div> | ||
<a href="login.html" class="btn btn-primary btn-user btn-block"> | ||
Register Account | ||
</a> | ||
</form> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,4 +5,6 @@ | |
@include('site.layout.lista-usuarios') | ||
|
||
@include('site.layout.lista-leads') | ||
|
||
@include('auth.register') | ||
@endsection |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
<div class="container"> | ||
<div class="card o-hidden border-0 shadow-lg my-5"> | ||
<div class="card-body p-0"> | ||
<!-- Nested Row within Card Body --> | ||
<div class="row"> | ||
<div class="col-lg-12"> | ||
<div class="p-5"> | ||
<div class="text-center"> | ||
<h1 class="h4 text-gray-900 mb-4">Create an Account!</h1> | ||
</div> | ||
<form class="user"> | ||
<div class="form-group row"> | ||
<div class="col-sm-6 mb-3 mb-sm-0"> | ||
<input type="text" class="form-control form-control-user" id="exampleFirstName" | ||
placeholder="First Name"> | ||
</div> | ||
<div class="col-sm-6"> | ||
<input type="text" class="form-control form-control-user" id="exampleLastName" | ||
placeholder="Last Name"> | ||
</div> | ||
</div> | ||
<div class="form-group"> | ||
<input type="email" class="form-control form-control-user" id="exampleInputEmail" | ||
placeholder="Email Address"> | ||
</div> | ||
<div class="form-group row"> | ||
<div class="col-sm-6 mb-3 mb-sm-0"> | ||
<input type="password" class="form-control form-control-user" | ||
id="exampleInputPassword" placeholder="Password"> | ||
</div> | ||
<div class="col-sm-6"> | ||
<input type="password" class="form-control form-control-user" | ||
id="exampleRepeatPassword" placeholder="Repeat Password"> | ||
</div> | ||
</div> | ||
<a href="login.html" class="btn btn-primary btn-user btn-block"> | ||
Register Account | ||
</a> | ||
</form> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters