Skip to content

Commit

Permalink
correcting loaders for all registration pages
Browse files Browse the repository at this point in the history
  • Loading branch information
princekhunt committed Jun 9, 2024
1 parent 2389db9 commit 2d77f60
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions assets/static/css/registration/GenerateKeys.css
Original file line number Diff line number Diff line change
Expand Up @@ -77,14 +77,14 @@ html {
display: block;
}

.loader {
.GenKey-loader {
width: 64px;
height: 44px;
position: relative;
border: 5px solid #000000;
border-radius: 8px;
}
.loader::before {
.GenKey-loader::before {
content: "";
position: absolute;
border: 5px solid #000000;
Expand All @@ -95,7 +95,7 @@ html {
top: 0;
transform: translate(-50%, -100%);
}
.loader::after {
.GenKey-loader::after {
content: "";
position: absolute;
transform: translate(-50%, -50%);
Expand Down
1 change: 0 additions & 1 deletion registration/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,6 @@
</head>

<body>
<span id="pageloader" class="pageloader"></span>

{% block content %}
<!--content goes here-->
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{% extends 'base.html' %} {% block title %}Anonymous Direct Login{%endblock %}
{% load static %} {% block content %}

<link rel="stylesheet" href="{% static 'css/registration/AnonymousDirectLogin.css' %}" />
<div id="login-form">
{% csrf_token %}
<span class="DirectLoginLoader"></span>
Expand Down
3 changes: 2 additions & 1 deletion registration/templates/registration/GenerateKeys.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@
{% block title %}Securing Session{%endblock %}
{% load static %}
{% block content %}
<link rel="stylesheet" href="{% static 'css/registration/GenerateKeys.css' %}">
<div id="login-container">
<div id="login-form">
<span class="loader"></span>
<span class="GenKey-loader"></span>
<h1 id="processing">Generating Secure Keypair...</h1>
</div>
<script
Expand Down
2 changes: 1 addition & 1 deletion registration/templates/registration/Home.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{% load static %}
{% block content %}


<span id="pageloader" class="pageloader"></span>
<div id="Maincontent" class="container">
<img
class="logo"
Expand Down
2 changes: 1 addition & 1 deletion registration/templates/registration/Login.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{% block title %}Login{%endblock %}
{% load static %}
{% block content %}

<span id="pageloader" class="pageloader"></span>
<div id="Maincontent">

<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
Expand Down
2 changes: 1 addition & 1 deletion registration/templates/registration/Signup.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{% load static %}
{% block content %}


<span id="pageloader" class="pageloader"></span>

<div id="Maincontent">
<svg
Expand Down

0 comments on commit 2d77f60

Please sign in to comment.