sharding/samples/Samples.DynamicDb.Npgsql/WebApplication1/Pages/CreateDbKey.cshtml

21 lines
616 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@page
@model CreateDbKeyModel
@{
ViewData["title"] = "增加分库key";
}
<form asp-page="CreateDbKey" method="post">
<div class="mb-3 row">
<label asp-for="Key" class="col-sm-2 col-form-label"></label>
<div class="col-sm-10">
<input asp-for="Key" class="form-control" placeholder="分库key必填" required />
</div>
</div>
<div class="row">
<div class="offset-sm-2">
<button type="submit" class="btn btn-primary">提交</button>
<a asp-page="DbKeyMan" class="btn btn-secondary">返回</a>
</div>
</div>
</form>