33 lines
1.3 KiB
Plaintext
33 lines
1.3 KiB
Plaintext
@model ConfigurationModel
|
|
|
|
@{
|
|
Layout = "_ConfigurePlugin";
|
|
}
|
|
|
|
<form asp-controller="What3words" asp-action="Configure" method="post">
|
|
<div class="cards-group">
|
|
<div class="card card-default">
|
|
<div class="card-body">
|
|
<p>
|
|
Please find more info about <a href="https://what3words.com/about" target="_blank">what3words</a>.<br />
|
|
Use of the what3words service is governed by the <a href="https://what3words.com/api-licence-agreement" target="_blank">license agreement</a>.<br />
|
|
</p>
|
|
<hr />
|
|
<div class="form-group row">
|
|
<div class="col-md-3">
|
|
<nop-label asp-for="Enabled" />
|
|
</div>
|
|
<div class="col-md-9">
|
|
<nop-editor asp-for="Enabled" />
|
|
<span asp-validation-for="Enabled"></span>
|
|
</div>
|
|
</div>
|
|
<div class="form-group row">
|
|
<div class="col-md-9 offset-md-3">
|
|
<input type="submit" class="btn btn-primary" value="@T("Admin.Common.Save")" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</form> |