add now-ui deps

This commit is contained in:
Nabeel Shahzad
2017-07-28 07:13:52 -05:00
parent 6ab1a597e9
commit 748e58c7fb
527 changed files with 13663 additions and 74511 deletions

View File

@@ -1,51 +1,59 @@
@extends('auth.layout')
@section('content')
<form class="form-signin" method="POST" action="{{ url('/login') }}">
{{ csrf_field() }}
<div class="panel periodic-login">
<div class="panel-body text-center">
{{--<h1 class="atomic-symbol">Mi</h1>--}}
{{--<p class="atomic-mass">14.072110</p>
<p class="element-name">Miminium</p>--}}
<p><img src="assets/frontend/img/logo_login.png" /></p>
{{--<i class="icons icon-arrow-down"></i>--}}
<div class="form-group{{ $errors->has('email') ? ' has-error' : '' }} form-animate-text" style="margin-top:40px !important;">
<input id="email" type="email" class="form-text" name="email" value="{{ old('email') }}" required autofocus>
@if ($errors->has('email'))
<span class="help-block">
<strong>{{ $errors->first('email') }}</strong>
</span>
@endif
<span class="bar"></span>
<label for="email" class="col-md-4 control-label">email</label>
<div class="col-md-4 content-center">
<div class="card card-login card-plain">
<form class="form" method="POST" action="{{ url('/login') }}">
<div class="header header-primary text-center">
<div class="logo-container" style="width: 320px;">
<img src="/img/logo.svg" width="320" height="320" style="background: #FFF">
</div>
<div class="form-group{{ $errors->has('password') ? ' has-error' : '' }} form-animate-text" style="margin-top:40px !important;">
<input id="password" type="password" class="form-text" name="password" required>
@if ($errors->has('password'))
<span class="help-block">
<strong>{{ $errors->first('password') }}</strong>
</span>
@endif
<span class="bar"></span>
<label for="password" class="col-md-4 control-label">password</label>
</div>
<div class="content">
<div class="input-group form-group-no-border{{ $errors->has('email') ? ' has-error' : '' }} input-lg">
<span class="input-group-addon">
<i class="now-ui-icons users_circle-08"></i>
</span>
<input id="email" type="email"
class="form-control"
name="email"
value="{{ old('email') }}"
placeholder="Email"
required>
</div>
<label class="pull-left">
<input type="checkbox" name="remember"> Remember Me
</label>
<button type="submit" class="btn btn col-md-12">
Login
</button>
@if ($errors->has('email'))
<span class="help-block">
<strong>{{ $errors->first('email') }}</strong>
</span>
@endif
<div class="input-group form-group-no-border{{ $errors->has('password') ? ' has-error' : '' }} input-lg">
<span class="input-group-addon">
<i class="now-ui-icons ui-1_lock-circle-open"></i>
</span>
<input id="password" type="password" class="form-control" placeholder="Password" required>
</div>
@if ($errors->has('password'))
<span class="help-block">
<strong>{{ $errors->first('password') }}</strong>
</span>
@endif
</div>
<div class="text-center" style="padding:5px;">
<a href="{{ url('/password/reset') }}">Forgot Password</a>
<a href="{{ url('/register') }}">| Signup</a>
<div class="footer text-center">
<button href="#pablo" class="btn btn-primary btn-round btn-lg btn-block">login</button>
</div>
</div>
</form>
<div class="pull-left">
<h6>
<a href="#pablo" class="link">Create Account</a>
</h6>
</div>
<div class="pull-right">
<h6>
<a href="#pablo" class="link">Need Help?</a>
</h6>
</div>
</form>
</div>
</div>
@endsection