Clean up submit and confirm page
This commit is contained in:
@@ -15,6 +15,7 @@
|
||||
</dd>
|
||||
</dl>
|
||||
@Html.HiddenFor(m => m.Name)
|
||||
|
||||
<dl class="dl-horizontal email">
|
||||
<dt>
|
||||
@Html.DisplayNameFor(m => m.Email)
|
||||
@@ -25,15 +26,7 @@
|
||||
</dl>
|
||||
@Html.HiddenFor(m => m.Email)
|
||||
<input type="hidden" name="EmailConfirm" value="@Model.Email"/>
|
||||
<dl class="dl-horizontal siteId">
|
||||
<dt>
|
||||
@Html.DisplayNameFor(m => m.SiteId)
|
||||
</dt>
|
||||
<dd>
|
||||
@Html.DisplayTextFor(m => m.SiteId)
|
||||
</dd>
|
||||
</dl>
|
||||
@Html.HiddenFor(m => m.SiteId)
|
||||
|
||||
<dl class="dl-horizontal identifier">
|
||||
<dt>
|
||||
@Html.DisplayNameFor(m => m.Identifier)
|
||||
@@ -44,8 +37,30 @@
|
||||
</dl>
|
||||
@Html.HiddenFor(m => m.Identifier)
|
||||
|
||||
<dl class="dl-horizontal siteId">
|
||||
<dt>
|
||||
@Html.DisplayNameFor(m => m.SiteId)
|
||||
</dt>
|
||||
<dd>
|
||||
@Html.DisplayTextFor(m => m.SiteId)
|
||||
</dd>
|
||||
</dl>
|
||||
@Html.HiddenFor(m => m.SiteId)
|
||||
|
||||
<dl class="dl-horizontal files">
|
||||
<dt>
|
||||
Files
|
||||
</dt>
|
||||
<dd>
|
||||
@foreach (var file in Model.Files)
|
||||
{
|
||||
@file<br/>
|
||||
}
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
<div class="form-actions">
|
||||
<input type="submit" name="Confirm" value="Confirm" class="btn btn-primary"/>
|
||||
<input type="submit" name="Confirm" value="Confirm" class="btn btn-primary pull-right"/>
|
||||
<input type="submit" name="Index" value="Back" class="btn"/>
|
||||
</div>
|
||||
}
|
||||
|
||||
@@ -57,7 +57,7 @@
|
||||
<!-- The table listing the files available for upload/download -->
|
||||
<table role="presentation" class="table table-striped panel panel-default"><tbody class="files"></tbody></table>
|
||||
</form>
|
||||
<label for="submit-form" class="btn btn-primary">Submit</label>
|
||||
<label for="submit-form" class="btn btn-primary pull-right">Submit...</label>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user