Code formatting

This commit is contained in:
Dennis Reimann 2020-07-22 15:29:03 +02:00
parent 22f8c4b88b
commit ed81a17039
No known key found for this signature in database
GPG key ID: 5009E1797F03F8D0

View file

@ -26,7 +26,8 @@
<small class="text-muted">Keep empty for server-initiated pairing</small>
<input asp-for="PublicKey" class="form-control" />
<span asp-validation-for="PublicKey" class="text-danger"></span>
</div>}
</div>
}
@if (ViewBag.ShowStores)
{
@ -34,10 +35,12 @@
<label asp-for="StoreId" class="control-label"></label>
<select asp-for="StoreId" asp-items="Model.Stores" class="form-control"></select>
<span asp-validation-for="StoreId" class="text-danger"></span>
</div>}
</div>
}
else
{
<input type="hidden" asp-for="StoreId" />}
<input type="hidden" asp-for="StoreId" />
}
<div class="form-group">
<input id="RequestPairing" type="submit" value="Request pairing" class="btn btn-primary" />
</div>