Skip to content

Commit

Permalink
Set name&authkey to required, change name to ENOKEY
Browse files Browse the repository at this point in the history
Fixes #56
  • Loading branch information
Trolldemorted authored and fsck committed Mar 15, 2019
1 parent e3d3fe6 commit f556e61
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions static/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="/">ENOKEYS - SSH PublicKey Self-Service Center</a>
<a class="navbar-brand" href="/">ENOKEY - SSH PublicKey Self-Service Center</a>
</nav>
<div class="container">
<div class="row">
<div class="col-md-12">
<form action="" method="post" accept-charset="utf-8">
<div class="form-group">
<label for="name">Dein Name:</label>
<input type="text" class="form-control" name="name" id="name" placeholder="Max Mustermann">
<input type="text" class="form-control" name="name" id="name" placeholder="Max Mustermann" required>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="type" id="type_github" value="GitHub">
Expand Down Expand Up @@ -50,7 +50,7 @@
</div>
<div class="form-group">
<label for="authkey">AUTHKEY:</label>
<input type="text" class="form-control" name="authkey" id="authkey" placeholder="SECRET_KEY">
<input type="text" class="form-control" name="authkey" id="authkey" placeholder="SECRET_KEY" required>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
Expand Down

0 comments on commit f556e61

Please sign in to comment.