-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
7 changed files
with
154 additions
and
28 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
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
55 changes: 55 additions & 0 deletions
55
resources/views/encuestas/clonar_bancos_nacional.blade.php
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,55 @@ | ||
@extends('layout') | ||
@section('content') | ||
<div class="row"> | ||
<div class="browser-window"> | ||
<div class="top-bar"> | ||
<h4>Clonar Periodo Bancard</h4> | ||
</div> | ||
<div class="content"> | ||
<form class="col s12" id="realForm" action="{{route('clonar.bancos.nacional.action')}}" method="POST"> | ||
<div class="row"> | ||
<div class="input-field col s6"> | ||
<input type="text" class="validate" id="periodo" name="periodo"/> | ||
<label for="periodo">Periodo</label> | ||
</div> | ||
</div> | ||
<input type="hidden" name="_token" value="{{{ csrf_token() }}}" /> | ||
<div class="button-group"> | ||
<button class="btn waves-effect waves-light" type="submit" name="submit">Guardar | ||
<i class="material-icons left">save</i> | ||
</button> | ||
</div> | ||
</form> | ||
</div> | ||
</div> | ||
</div> | ||
@if($toast) | ||
<div id="toast"></div> | ||
@endif | ||
@stop | ||
@push('scripts') | ||
<script> | ||
if($("#toast").length > 0){ | ||
M.toast({html: 'Archivo Procesado'}); | ||
} | ||
var options = []; | ||
$('#realForm').submit(function(e){ | ||
if($('#fields').val() === ''){ | ||
e.preventDefault(); | ||
} | ||
}); | ||
$('#realForm').keypress(function(event){ | ||
if (event.keyCode === 10 || event.keyCode === 13){ | ||
event.preventDefault(); | ||
} | ||
}); | ||
$(document).ready(function() { | ||
$('select').select2(); | ||
}); | ||
</script> | ||
@endpush |
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