Skip to content
This repository has been archived by the owner on Jan 26, 2021. It is now read-only.

Commit

Permalink
Overlapping Text Aligned in Email Verification
Browse files Browse the repository at this point in the history
Fixed Text Alignment in Email Verification

Aligned Overlapping Text in email Verification
  • Loading branch information
LaibaBasit008 committed Jun 15, 2020
1 parent b5b6de9 commit ea2b249
Show file tree
Hide file tree
Showing 5 changed files with 5,219 additions and 4 deletions.
3 changes: 2 additions & 1 deletion requirements/prod.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
Django==1.11.6

Django==1.11.29
Pillow==4.3.0
django-allauth==0.33.0
django-braces==1.11.0
Expand Down
7 changes: 7 additions & 0 deletions systers_portal/static/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ body {
bottom: 0;
width: 100%;
height: 60px;

background-color: #f5f5f5;
}

Expand Down Expand Up @@ -235,6 +236,12 @@ body > .container-fluid {
}
}

/*Clear for preventing overlapping of divs
-------------------------------------------------- */
#container{
margin: auto;
clear:both;
}

/* Common: about us, contact
-------------------------------------------------- */
Expand Down
4 changes: 2 additions & 2 deletions systers_portal/systers_portal/settings/dev.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
'default': {
'ENGINE': 'django.db.backends.postgresql',
'NAME': 'systersdb',
'USER': '',
'PASSWORD': '',
'USER': 'myuser',
'PASSWORD': '1234',
'HOST': 'localhost',
'PORT': '5432',
}
Expand Down
3 changes: 2 additions & 1 deletion systers_portal/templates/account/verification_sent.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
{% block title %} - Verify Your E-mail Address{% endblock %}

{% block content %}
<div class="container">

<div id="container">
<h2>Verify Your E-mail Address</h2>
<hr>
<p>We have sent an e-mail to you for verification. Follow the link provided to finalize the signup process. Please <a href="{% url 'contact' %}">contact us</a> if you do not receive it within a few minutes.</p>
Expand Down
Loading

0 comments on commit ea2b249

Please sign in to comment.