Creato evento con data e ora (start-end) per google-calendar
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
@extends('adminlte::page')
|
||||
@section('plugins.Fullcalendar', true)
|
||||
@section('plugins.MomentJs', true)
|
||||
@section('plugins.JqueryUi', true)
|
||||
@section('content_header')
|
||||
<h1>Appuntamenti</h1>
|
||||
@endsection
|
||||
@@ -14,12 +16,29 @@
|
||||
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
Start <input type="text" id="start" name="start">
|
||||
<form action="" method="POST">
|
||||
@csrf
|
||||
Giorno Inizio: <input type='date' class="form-control" name="DateStart" id="startDay"/>
|
||||
Ora Inizio: <input type='time' class="form-control" name="HourStart" id="startHour"/>
|
||||
<hr>
|
||||
Giorno Fine:<input type='date' class="form-control" name="DateEnd" id="endDay"/>
|
||||
Ora Fine: <input type='time' class="form-control" name="HourEnd" id="endHour"/>
|
||||
<hr>
|
||||
Titolo:
|
||||
<input type='text' class="form-control" name="title"/>
|
||||
Descrizione:
|
||||
<textarea class="form-control" name="descrizione"></textarea>
|
||||
<hr>
|
||||
<input type="submit" name="Submit">
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
||||
@section('js')
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datetimepicker/4.7.14/js/bootstrap-datetimepicker.min.js"></script>
|
||||
<script src="/js/app/calendario.js"></script>
|
||||
|
||||
|
||||
@endsection
|
||||
|
||||
Reference in New Issue
Block a user