first commit, after modifying client section
This commit is contained in:
126
resources/views/login 2/index.blade.php
Executable file
126
resources/views/login 2/index.blade.php
Executable file
@@ -0,0 +1,126 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<!-- Meta, title, CSS, favicons, etc. -->
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<title>Gentelella Alela! | </title>
|
||||
|
||||
<!-- Bootstrap -->
|
||||
<link href="{!! url('public/assets/vendors/bootstrap/dist/css/bootstrap.min.css') !!}" rel="stylesheet">
|
||||
<!-- Font Awesome -->
|
||||
<link href="{!! url('public/assets/vendors/font-awesome/css/font-awesome.min.css') !!}" rel="stylesheet">
|
||||
<!-- NProgress -->
|
||||
<link href="{!! url('public/assets/vendors/nprogress/nprogress.css') !!}" rel="stylesheet">
|
||||
<!-- Animate.css -->
|
||||
<link href="{!! url('public/assets/vendors/animate.css/animate.min.css') !!}" rel="stylesheet">
|
||||
|
||||
<!-- Custom Theme Style -->
|
||||
<link href="{!! url('public/assets/build/css/custom.min.css') !!}" rel="stylesheet">
|
||||
</head>
|
||||
|
||||
<body class="login">
|
||||
<div>
|
||||
<a class="hiddenanchor" id="signup"></a>
|
||||
<a class="hiddenanchor" id="signin"></a>
|
||||
|
||||
<div class="login_wrapper">
|
||||
<div class="animate form login_form">
|
||||
<section class="login_content">
|
||||
@include('commons.notifications')
|
||||
|
||||
<form method="post" action="{!! url('login') !!}">
|
||||
{{ csrf_field() }}
|
||||
<h1>Login Form</h1>
|
||||
<div>
|
||||
<input type="text" name="email" class="form-control" placeholder="Email" required="" />
|
||||
</div>
|
||||
<div>
|
||||
<input type="password" name="password" class="form-control" placeholder="Password" required="" />
|
||||
</div>
|
||||
<div>
|
||||
<button type="submit" class="btn btn-default submit">Log in</button>
|
||||
<a class="reset_pass" href="#">Lost your password?</a>
|
||||
</div>
|
||||
|
||||
<div class="clearfix"></div>
|
||||
|
||||
<div class="separator">
|
||||
<p class="change_link">New to site?
|
||||
<a href="#signup" class="to_register"> Create Account </a>
|
||||
</p>
|
||||
|
||||
<div class="clearfix"></div>
|
||||
<br />
|
||||
|
||||
<div>
|
||||
<h1><i class="fa fa-paw"></i> Gentelella Alela!</h1>
|
||||
<p>©2016 All Rights Reserved. Gentelella Alela! is a Bootstrap 3 template. Privacy and Terms</p>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
<div id="register" class="animate form registration_form">
|
||||
<section class="login_content">
|
||||
<form method="post" action="{!! url('account/register') !!}">
|
||||
{{ csrf_field() }}
|
||||
<h1>Create Account</h1>
|
||||
<div>
|
||||
<input type="text" class="form-control" name="name" placeholder="Username" required />
|
||||
</div>
|
||||
<div>
|
||||
<input type="email" class="form-control" name="email" placeholder="Email" required />
|
||||
</div>
|
||||
<div>
|
||||
<input type="text" class="form-control" name="phone" placeholder="Phone" required />
|
||||
</div>
|
||||
<div>
|
||||
<select name="designation" class="form-control">
|
||||
<option value="" disabled="">-- Select One --</option>
|
||||
<?php foreach ($designation as $key => $value): ?>
|
||||
<option value="{{ $key }}">{{ $value }}</option>
|
||||
|
||||
<?php endforeach ?>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<input type="password" class="form-control" name="password" placeholder="Password" required />
|
||||
</div>
|
||||
<div>
|
||||
<input type="password" class="form-control" name="confirm_password" placeholder="Confirm Password" required />
|
||||
</div>
|
||||
<div>
|
||||
<a class="btn btn-default submit" href="index.html">Submit</a>
|
||||
</div>
|
||||
|
||||
<div class="clearfix"></div>
|
||||
|
||||
<div class="separator">
|
||||
<p class="change_link">Already a member ?
|
||||
<a href="#signin" class="to_register"> Log in </a>
|
||||
</p>
|
||||
|
||||
<div class="clearfix"></div>
|
||||
<br />
|
||||
|
||||
<div>
|
||||
<h1><i class="fa fa-paw"></i> Gentelella Alela!</h1>
|
||||
<p>©2016 All Rights Reserved. Gentelella Alela! is a Bootstrap 3 template. Privacy and Terms</p>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user