Skip to content

Commit 5d0e5b0

Browse files
committed
Form input styling
Use bootstrap styling, with size according to parent to make entire input visible, and mark input as required.
1 parent ced7b10 commit 5d0e5b0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cli-token.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ <h1>{{appname}} for {{service}}</h1>
2525
<p>Type in the CLI token</p>
2626
<form action="/cli-token-login" method="POST">
2727
<input type="hidden" id="id" name="id" value="{{id}}" />
28-
<input type="text" id="token" name="token" />
28+
<input class="form-control" type="text" id="token" name="token" required />
2929
<br/>
3030
<br/>
3131
<input class="btn btn-primary btn-lg" role="button" type="submit" value="Login" />

revoke.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ <h1>{{appname}}</h1>
2424

2525
<p>Type in the AuthID to revoke</p>
2626
<form action="/revoked" method="POST">
27-
<input type="text" id="authid" name="authid" />
27+
<input class="form-control" type="text" id="authid" name="authid" required />
2828
<br/>
2929
<br/>
3030
<input class="btn btn-primary btn-lg" role="button" type="submit" value="Revoke AuthID" />

0 commit comments

Comments
 (0)