-
Notifications
You must be signed in to change notification settings - Fork 5
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
f0cd3e6
commit cdb67cc
Showing
8 changed files
with
173 additions
and
12 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
Large diffs are not rendered by default.
Oops, something went wrong.
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,62 @@ | ||
@extends('layouts.app') | ||
|
||
@section('content') | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="col-md-8 col-md-offset-2"> | ||
<div class="panel panel-default"> | ||
<div class="panel-heading">AJAX Register</div> | ||
<div class="panel-body"> | ||
<form class="form-horizontal" id="registration" method="POST" action="{{ url('users/register') }}" data-parsley-validate> | ||
{!! csrf_field() !!} | ||
|
||
<div class="form-group"> | ||
<label class="col-md-4 control-label">Name</label> | ||
|
||
<div class="col-md-6"> | ||
<input type="text" class="form-control" name="name" required> | ||
</div> | ||
</div> | ||
|
||
<div class="form-group"> | ||
<label class="col-md-4 control-label">E-Mail Address</label> | ||
|
||
<div class="col-md-6"> | ||
<input type="email" class="form-control" name="email" required> | ||
</div> | ||
</div> | ||
|
||
<div class="form-group"> | ||
<label class="col-md-4 control-label">Password</label> | ||
|
||
<div class="col-md-6"> | ||
<input type="password" class="form-control" name="password" id="password" required> | ||
</div> | ||
</div> | ||
|
||
<div class="form-group"> | ||
<label class="col-md-4 control-label">Confirm Password</label> | ||
|
||
<div class="col-md-6"> | ||
<input type="password" class="form-control" name="password_confirmation" data-parsley-equalto="#password" required> | ||
</div> | ||
</div> | ||
|
||
<div class="form-group"> | ||
<div class="col-md-6 col-md-offset-4"> | ||
<button type="submit" class="btn btn-primary ladda-button" data-style="expand-left" | ||
data-size="s" data-color="green"> | ||
<i class="fa fa-btn fa-user"></i> Register | ||
</button> | ||
<a href="/login/facebook"> <div class="btn btn-md btn-primary ladda-button" | ||
data-style="expand-left" data-size="s" data-color="blue"> | ||
<i class="fa fa-facebook"></i> Login with Facebook </div></a> | ||
</div> | ||
</div> | ||
</form> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
@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
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
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