Leaf Input functional
This commit is contained in:
@@ -1,25 +1,27 @@
|
||||
@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>
|
||||
@section Styles
|
||||
{
|
||||
@Styles.Render("~/backload/blueimp/bootstrap/BasicPlusUI/css")
|
||||
}
|
||||
|
||||
<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>
|
||||
|
||||
@Html.Partial("_StatusMessage")
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-6 well">
|
||||
@using (Html.BeginForm("Index", "LeafInput", FormMethod.Post, new { enctype = "multipart/form-data" }))
|
||||
@using (Html.BeginForm("Index", "LeafInput", FormMethod.Post))
|
||||
{
|
||||
@Html.Partial("_ValidationSummary")
|
||||
@Html.EditorFor(m => m.Name)
|
||||
@Html.EditorFor(m => m.Email)
|
||||
@Html.EditorFor(m => m.EmailConfirm)
|
||||
@Html.EditorFor(m => m.Identifier)
|
||||
@Html.EditorFor(m => m.SiteId)
|
||||
<input type="submit" id="submit-form" class="hidden" />
|
||||
@Html.EditorFor(m => m.Name)
|
||||
@Html.EditorFor(m => m.Email)
|
||||
@Html.EditorFor(m => m.EmailConfirm)
|
||||
@Html.EditorFor(m => m.Identifier)
|
||||
@Html.EditorFor(m => m.SiteId)
|
||||
<input type="submit" id="submit-form" class="hidden" />
|
||||
}
|
||||
<!-- The file upload form used as target for the file upload widget -->
|
||||
<form id="fileupload" action="/Backload/FileHandler" method="POST" enctype="multipart/form-data">
|
||||
|
||||
Reference in New Issue
Block a user