Skip to content

Commit

Permalink
hacked some CSS to tighten things up
Browse files Browse the repository at this point in the history
  • Loading branch information
cgrayson committed Mar 22, 2024
1 parent 623651b commit d935c3d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lib/ui/public/app/auth/Auth.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@
<label>
<input type="radio" v-model="credential.type" value="user" id="user"> <b>Username &amp; Password</b> - The server requires a username and password ("Basic" authentication)
</label>
<section v-if="credential.type === 'user'">
<section v-if="credential.type === 'user'" style="margin-top: 2px;">
<ul>
<li>
<li style="margin-bottom: 2px;">
<label>Username</label>
<input type="text" v-model="credential.username">
</li>
<li>
<li style="margin-bottom: 2px;">
<label>Password</label>
<input type="text" v-model="credential.password">
</li>
Expand All @@ -31,9 +31,9 @@
<label>
<input type="radio" v-model="credential.type" value="token" id="token"> <b>Bearer Token</b> - The server uses token-based authentication
</label>
<section v-if="credential.type === 'token'">
<section v-if="credential.type === 'token'" style="margin-top: 2px;">
<ul>
<li>
<li style="margin-bottom: 2px;">
<label>Token</label>
<input type="text" v-model="credential.token">
</li>
Expand Down

0 comments on commit d935c3d

Please sign in to comment.