Last active
August 22, 2016 10:29
-
-
Save ferdiunal/6bae4423bdecabb3958ed5108aaeb13a to your computer and use it in GitHub Desktop.
This file contains hidden or 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('form') | |
<form class="ui form" action="{!! route(config('dencol.auth.routes.reminder.post.args.as')) !!}" | |
method="post" autocomplete="off" novalidate onsubmit="return false;" id="reminderForm"> | |
<div class="ui segment" style="text-align: left;"> | |
<div class="field"> | |
<div class="ui left icon input"> | |
<i class="user icon"></i> | |
<input type="text" name="email" placeholder="E-posta adresin" value="{!! old('email') !!}"> | |
</div> | |
</div> | |
<div class="field" style="text-align:center;"> | |
<div class="g-recaptcha" data-sitekey="{!! config('app.reCaptcha.site_key') !!}"></div> | |
</div> | |
<div onclick="rest.reminder('#reminderForm')" class="ui fluid large teal submit button">Gönder</div> | |
</div> | |
</form> | |
@stop | |
@section('scripts') | |
<script src='https://www.google.com/recaptcha/api.js'></script> | |
@stop |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment