tesses-cms/Tesses.CMS/Assets/AccountEditor.html

20 lines
910 B
HTML

<form action="./account" method="post" enctype="application/x-www-form-urlencoded">
<div class="mb-3">
<label for="exampleFormControlInput1" class="form-label">Proper Name</label>
<input type="text" class="form-control" id="exampleFormControlInput1" placeholder="Proper Name" name="proper_name" value="{{propername}}">
</div>
<div class="mb-3">
<label for="exampleFormControlTextarea1" class="form-label">About Me</label>
<textarea name="about_me" class="form-control" id="exampleFormControlTextarea1" rows="5">{{aboutme}}</textarea>
</div>
<input type="submit" value="Change Metadata" class="btn btn-primary">
{{if notverified}}
<a class="btn btn-primary" href="./resend">Resend Verification Link</a>
{{end}}
{{if admin}}
<a class="btn btn-primary" href="./manage">Manage Accounts</a>
{{end}}
<a class="btn btn-danger" href="./logout">Logout</a>
</form>