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