-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Adding navbar and footer to login pages * test fix
- Loading branch information
Showing
4 changed files
with
13 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,8 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
{% extends 'base.html' %} | ||
{% block title %}Register{% endblock %} | ||
{% load static %} | ||
|
||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Register</title> | ||
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet"> | ||
<link href="{% static 'css/styles.css' %}" rel="stylesheet"> | ||
|
||
</head> | ||
<body class="bg-gray-100 font-sans"> | ||
{% block content %} | ||
<div class="container mx-auto px-4 h-screen flex items-center justify-center"> | ||
<div class="w-full max-w-md"> | ||
<div class="bg-white shadow-md rounded-lg overflow-hidden"> | ||
|
@@ -40,5 +32,4 @@ <h3 class="text-2xl font-bold">Register</h3> | |
</div> | ||
</div> | ||
</div> | ||
</body> | ||
</html> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,7 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
{% extends 'base.html' %} | ||
{% block title %}Service Provider Login{% endblock %} | ||
{% load static %} | ||
|
||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Service Provider Login</title> | ||
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet"> | ||
<link href="{% static 'css/styles.css' %}" rel="stylesheet"> | ||
</head> | ||
<body class="bg-gray-100 font-sans"> | ||
{% block content %} | ||
<div class="container mx-auto px-4 h-screen flex items-center justify-center"> | ||
<div class="w-full max-w-md"> | ||
<div class="bg-white shadow-md rounded-lg overflow-hidden"> | ||
|
@@ -67,5 +59,4 @@ <h3 class="text-2xl font-bold">Service Provider Login</h3> | |
</div> | ||
</div> | ||
</div> | ||
</body> | ||
</html> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,8 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
{% extends 'base.html' %} | ||
{% block title %}Service Provider Login{% endblock %} | ||
{% load static %} | ||
{% load socialaccount %} | ||
|
||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>User Login</title> | ||
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet"> | ||
<link href="{% static 'css/styles.css' %}" rel="stylesheet"> | ||
</head> | ||
<body class="bg-gray-100 font-sans"> | ||
{% block content %} | ||
<div class="container mx-auto px-4 h-screen flex items-center justify-center"> | ||
<div class="w-full max-w-md"> | ||
<div class="bg-white shadow-md rounded-lg overflow-hidden"> | ||
|
@@ -80,5 +72,4 @@ <h1 class="text-2xl font-bold">User Login</h1> | |
</div> | ||
</div> | ||
</div> | ||
</body> | ||
</html> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters