20 lines
605 B
Plaintext
20 lines
605 B
Plaintext
@using LeafWeb.WebCms.Utility
|
|
@model bool
|
|
|
|
@{
|
|
var propertyName = ViewData.ModelMetadata.PropertyName;
|
|
}
|
|
|
|
<div class="@(Html.ValidationErrorFor(m => m, " is-invalid"))">
|
|
<div class="checkbox">
|
|
<label>
|
|
@Html.CheckBoxFor(m=> m)
|
|
I agree to the
|
|
<a href="@UmbracoContext.Current.UrlProvider.GetUrl(1115)" target="_blank">
|
|
Terms of Service
|
|
<span class="fa fa-window-restore" aria-hidden="true"></span>
|
|
</a>
|
|
</label>
|
|
</div>
|
|
@Html.ValidationMessageFor(m => m, null, new { @class = "form-text" })
|
|
</div> |