tethys/resources/views/publish/create-step1.blade.php

50 lines
2.0 KiB
PHP
Raw Normal View History

2018-08-06 12:30:51 +00:00
@extends('layouts.app')
@section('title', 'Publish')
@section('content')
<div class="title">
<h2><i class="fa fa-upload"></i> Publish New Dataset - Step 1</h2>
</div>
{{-- <h3 class="document-type">Dokumenttyp und Datei wählen</h3> --}}
{{-- <form action="/dataset/store-step1" method="post" class="pure-form" enctype="multipart/form-data"> --}}
{!! Form::model($dataset, ['method' => 'POST', 'route' => ['dataset.store1'], 'class' => 'pure-form']) !!}
{{ csrf_field() }}
<fieldset class="left-labels">
<legend>Datensatztyp</legend>
<div class="description hint">
<p>Bitte wählen Sie einen Datensatztyp aus der Liste aus.</p></div><p></p><div class="form-item">
<label for="documentType">Datensatztyp<span class="required" title="Dieses Feld muss ausgefüllt werden."> *</span></label>
<div class="select" style="width:300px" title="Bitte wählen Sie einen Datensatztyp aus der Liste aus.">
{!! Form::select('Type', Lang::get('doctypes'), null, ['id' => 'type', 'placeholder' => '-- select type --']) !!}
</div>
</div>
</fieldset>
<fieldset class="left-labels">
<legend>Einräumung eines einfachen Nutzungsrechts</legend>
<div class="class="pure-u-1 pure-u-md-1-2 pure-div"">
<small for="rights" class="pure-form-message-inline">Ich habe diese rechtlichen Hinweise gelesen und bin damit einverstanden.
<span class="required" title="Dieses Feld muss ausgefüllt werden.">*</span>
</small>
<input name="rights" value="0" type="hidden">
<input class="form-checkbox" name="rights" id="rights" value="1" type="checkbox">
</div>
</fieldset>
<br />
<div class="pure-controls">
<button type="submit" class="pure-button button-small">
<i class="fa fa-arrow-right"></i>
<span>Weiter zum nächsten Schritt</span>
</button>
</div>
{!! Form::close() !!}
@include('errors._errors')
@stop