diff options
author | Frederick Muriuki Muriithi | 2024-07-12 15:56:02 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2024-07-12 15:56:02 -0500 |
commit | 3f38250b4b3803c85a4f85899accf9eca562bac6 (patch) | |
tree | 04038dc524e57a93e77e192df9d0e2887b69bc94 | |
parent | 7051fa73c6745033950090436cfd30b02d02ba4f (diff) | |
download | gn-auth-3f38250b4b3803c85a4f85899accf9eca562bac6.tar.gz |
Remove fieldset that breaks UI in google-chrome.
-rw-r--r-- | gn_auth/templates/oauth2/authorise-user.html | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/gn_auth/templates/oauth2/authorise-user.html b/gn_auth/templates/oauth2/authorise-user.html index deac40a..d69bdd4 100644 --- a/gn_auth/templates/oauth2/authorise-user.html +++ b/gn_auth/templates/oauth2/authorise-user.html @@ -17,20 +17,18 @@ <input type="hidden" name="scope" value="{{scope | join(' ')}}" /> <input type="hidden" name="client_id" value="{{client.client_id}}" /> - <fieldset> - <legend>User Credentials</legend> - <fieldset class="form-group"> - <label for="user:email" class="form-label">Email</label> - <input type="email" name="user:email" id="user:email" required="required" - class="form-control"/> - </fieldset> + <legend>User Credentials</legend> + <div class="form-group"> + <label for="user:email" class="form-label">Email</label> + <input type="email" name="user:email" id="user:email" required="required" + class="form-control"/> + </div> - <fieldset class="form-group"> + <div class="form-group"> <label for="user:password" class="form-label">Password</label> <input type="password" name="user:password" id="user:password" required="required" class="form-control" /> - </fieldset> - </fieldset> + </div> <input type="submit" value="authorise" class="btn btn-primary" /> </form> |