Skip to content

Instantly share code, notes, and snippets.

@antonioribeiro
Last active August 29, 2015 13:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save antonioribeiro/9273363 to your computer and use it in GitHub Desktop.
Save antonioribeiro/9273363 to your computer and use it in GitHub Desktop.
@extends('layout')
@section('content')
@section('html5-head')
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
@stop
@ijs(//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js)
@h(1,Welcome Back!)
@h(3,This is a sample)
@p('This is a quoted one')
@row
@form(#url=form/url/to/test,#method=POST,class=form-inline,#role=form)
@bs.md('9 col-md-offset-3')
@bs.md('6')
@input(email,name=email,placeholder=Just type your e-mail here,class=form-control,data-offset="some data")
@@
@bs.md('1')
@input(submit,value=You Send it!,class=btn btn-large btn-primary)
@@
@text(email,name=email,id=email,class=form-control)
@@
@@
@@
@stop
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
</head>
<body>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<h1 >Welcome Back!</h1>
<h3 >This is a sample</h3>
<p >This is a quoted one</p>
<div class="row">
<form method="POST" action="http://172.17.0.2/steroids/form/url/to/test" accept-charset="UTF-8" class="form-inline" role="form"><input name="_token" type="hidden" value="bjTFSpPsP5KVKp2yFwLBBfCcOKPRcRpNqgyGQSKS">
<div class="col-md-9 col-md-offset-3">
<div class="col-md-6">
<input type="email" name="email" placeholder="Just type your e-mail here" class="form-control" data-offset="some data" />
</div>
<div class="col-md-1">
<input type="submit" value="You Send it!" class="btn btn-large btn-primary" />
</div>
<input type="text" name="email" id="email" class="form-control" />
</div>
</form>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment