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
<section id="registerForm"> | |
<form action="/Account/Register" class="form form-horizontal" method="post" role="form" novalidate="novalidate"><input name="__RequestVerificationToken" type="hidden" value="adWd6SBAVW3FPgKfNv6u2ECEtQ9oVpiEJsQVBxXB0BfSKnReVHGLVBk3OiTdIT1hYUcSPusu8jRtku2hKRMjIDw7JhU1"><input data-val="true" data-val-required="The RequireAdditionalData field is required." id="RequireAdditionalData" name="RequireAdditionalData" type="hidden" value="False"> <div class="form-group"> | |
<label class="col-md-3 control-label" for="Email">Email</label> | |
<div class="col-md-9"> | |
<input class="form-control" data-val="true" data-val-email="The Email field is not a valid e-mail address." data-val-required="The Email field is required." id="Email" name="Email" placeholder="[email protected]" type="text" value=""> | |
<span class="field-validation-valid help-block" data-valmsg-for="Email" data-valmsg-replace="true"></span> | |
</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
<form method="POST"> | |
<fieldset><legend>Example 3</legend> | |
<span><label><input id="field_terms" type="checkbox" required name="terms"> I accept the <u>Terms and Conditions</u></label></span> | |
<span><input type="submit"></span> | |
</fieldset> | |
</form> | |
<script type="text/javascript">document.getElementById("field_terms").setCustomValidity("hoang anh le");</script> |
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
$('#page_messages').find(':input').each(function(){ | |
message += $(this).val(); | |
}); |
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
<?php | |
/* | |
|-------------------------------------------------------------------------- | |
| Application Routes | |
|-------------------------------------------------------------------------- | |
| | |
| Here is where you can register all of the routes for an application. | |
| It's a breeze. Simply tell Laravel the URIs it should respond to | |
| and give it the Closure to execute when that URI is requested. |
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
Event::listen('illuminate.query', function($sql) | |
{ | |
var_dump($sql); | |
}); |
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->messageController->send(array('keystone' => ['keystone:wrong']), $this::message_key); | |
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
$messages = $this->messageController->getMessages($this::message_key); | |
return View::make('login',array( | |
'messages' => $messages, | |
)); |
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
@section('messages') | |
<div id="page_messages"> | |
@foreach($messages as $key => $values) | |
@foreach($values as $value) | |
<input type="hidden" name="{{$key}}" value="{{$value}}"> | |
@endforeach | |
@endforeach | |
</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
<div id="page_messages"> | |
@foreach($messages as $key => $values) | |
@foreach($values as $value) | |
<input type="hidden" name="{{$key}}" value="{{$value}}"> | |
@endforeach | |
@endforeach | |
</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
<html> | |
<meta http-equiv="content-type" content="text/css; charset=UTF-8"> | |
<body> | |
<pre style="word-wrap: break-word; white-space: pre-wrap;">/*! | |
* Bootstrap v3.3.6 (http://getbootstrap.com) | |
* Copyright 2011-2015 Twitter, Inc. | |
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) | |
*//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{margin:.67em 0;font-size:2em}mark{color:#000;background:#ff0}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical- |