Advertisement
Guest User

Untitled

a guest
Mar 12th, 2020
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.30 KB | None | 0 0
  1. <main role="main" class="row d-flex justify-content-center">
  2.             <form class="form-group col-md-6" action="{{ route('store_input') }}"  method="POST">
  3.                 <h1 class="h2">New Input</h1>
  4.                 @csrf
  5.                 <div class="form-group">
  6.                     <label for="description" class="sr-only">Descrizione</label>
  7.                     <textarea type="text" name="description" class="form-control" id="inputDescription" aria-describedby="emailDescription" placeholder="Descrizione" required autofocus></textarea>
  8.                 </div>
  9.                 <div class="form-group" class="sr-only">
  10.                     <label for="import">Importo in euro</label>
  11.                     <input type="number" class="form-control" id="inputImport" name="import" placeholder="ese. 11.25" required>
  12.                 </div>
  13.                 <div class="form-group col-6" id="sandbox-container" class="sr-only">
  14.                     <label for="date">Date label</label>
  15.                     <input id="sandbox-container" class="date form-control" type="text">
  16.                 </div>
  17.                 <div class="col-md-2">
  18.                     <button class="btn btn-sm btn-primary btn-block" type="submit">Insert</button>
  19.                 </div>
  20.             </form>
  21.         </div>
  22. </main>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement