24 lines
1.0 KiB
Plaintext
24 lines
1.0 KiB
Plaintext
@model LeafWeb.Web.ViewModels.LeafInput.CreateViewModel
|
|
|
|
<h1>Submitting Data and Retrieving EDO Results</h1>
|
|
<p>
|
|
There is no limit on the number of files you may submit for analysis. Keep selecting files and hitting the Add button until all of the files you need to upload are shown in the list. Then enter an identifier for this set of data and click the Upload button.
|
|
</p>
|
|
<div class="row">
|
|
<div class="col-md-5">
|
|
@using (Html.BeginForm("Index", "LeafInput", FormMethod.Post, new {@class = "form-horizontal well", enctype= "multipart/form-data" }))
|
|
{
|
|
@Html.Partial("_ValidationSummary")
|
|
<fieldset>
|
|
@Html.EditorFor(m => m.Name)
|
|
@Html.EditorFor(m => m.Email)
|
|
@Html.EditorFor(m => m.EmailConfirm)
|
|
@Html.EditorFor(m => m.LeafInputId)
|
|
@Html.EditorFor(m => m.SiteID)
|
|
@Html.EditorFor(m => m.Files)
|
|
<div class="form-actions">
|
|
<input type="submit" value="Create" class="btn btn-primary"/>
|
|
</div>
|
|
</fieldset>
|
|
}</div>
|
|
</div> |