Skip to content

Commit 5f16b66

Browse files
committed
include run from zip
1 parent 3d7b24a commit 5f16b66

File tree

1 file changed

+11
-10
lines changed

1 file changed

+11
-10
lines changed

LetsEncrypt-SiteExtension/Views/Home/Index.cshtml

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -100,12 +100,13 @@
100100
@using (Html.BeginForm())
101101
{
102102
@*@Html.AntiForgeryToken()*@
103-
103+
104104

105105
@Html.HiddenFor(model => model.AuthenticationEndpoint)
106106
@Html.HiddenFor(model => model.AzureWebSitesDefaultDomainName)
107107
@Html.HiddenFor(model => model.ManagementEndpoint)
108108
@Html.HiddenFor(model => model.TokenAudience)
109+
@Html.HiddenFor(model => model.RunFromPackage)
109110

110111
<div class="form-horizontal">
111112
<hr />
@@ -120,13 +121,13 @@
120121
}
121122
@Html.ValidationSummary(true, "", new { @class = "text-danger" })
122123
@{
123-
var authModel = (Model as LetsEncrypt.SiteExtension.Models.AuthenticationModel);
124+
var authModel = (Model as LetsEncrypt.SiteExtension.Models.AuthenticationModel);
124125
}
125126
@if (authModel != null && authModel.Error)
126127
{
127-
<div class="alert alert-danger" role="alert">
128-
@authModel.ErrorMessage
129-
</div>
128+
<div class="alert alert-danger" role="alert">
129+
@authModel.ErrorMessage
130+
</div>
130131
}
131132
<div class="form-group">
132133
@Html.LabelFor(model => model.Tenant, htmlAttributes: new { @class = "control-label col-md-2" })
@@ -206,11 +207,11 @@
206207
</div>
207208
</div>
208209
</div>
209-
<div class="form-horizontal">
210-
<input type="submit" value="Next" class="btn btn-primary pull-right" />
211-
<br />
212-
<br />
213-
</div>
210+
<div class="form-horizontal">
211+
<input type="submit" value="Next" class="btn btn-primary pull-right" />
212+
<br />
213+
<br />
214+
</div>
214215
}
215216

216217
<div>

0 commit comments

Comments
 (0)