Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file added job_portal/accounts/__init__.py
Empty file.
Binary file not shown.
Binary file added job_portal/accounts/__pycache__/admin.cpython-38.pyc
Binary file not shown.
Binary file not shown.
Binary file added job_portal/accounts/__pycache__/urls.cpython-38.pyc
Binary file not shown.
Binary file added job_portal/accounts/__pycache__/views.cpython-38.pyc
Binary file not shown.
3 changes: 3 additions & 0 deletions job_portal/accounts/admin.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from django.contrib import admin

# Register your models here.
5 changes: 5 additions & 0 deletions job_portal/accounts/apps.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
from django.apps import AppConfig


class AccountsConfig(AppConfig):
name = 'accounts'
Empty file.
Binary file not shown.
3 changes: 3 additions & 0 deletions job_portal/accounts/models.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from django.db import models

# Create your models here.
3 changes: 3 additions & 0 deletions job_portal/accounts/tests.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from django.test import TestCase

# Create your tests here.
6 changes: 6 additions & 0 deletions job_portal/accounts/urls.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
from django.urls import path
from . import views

urlpatterns =[
path('signup/', views.SignUpView.as_view(), name="signup"),
]
11 changes: 11 additions & 0 deletions job_portal/accounts/views.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
from django.shortcuts import render

# Create your views here.
from django.contrib.auth.forms import UserCreationForm
from django.urls import reverse_lazy
from django.views import generic

class SignUpView(generic.CreateView):
form_class = UserCreationForm
success_url = reverse_lazy('login')
template_name = 'signup.html'
Binary file modified job_portal/db.sqlite3
Binary file not shown.
260 changes: 260 additions & 0 deletions job_portal/general/static/general/about/main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,260 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body,
html {
height: 100%;
width: 100%;

font-family: "Open Sans", sans-serif;
font-size: 14px;
font-weight: 400;
line-height: 26px;
overflow-wrap: break-word;
word-break: normal;
}

/* header starts */

header {
/* background: #2d2d7f !important; */
background-image: url("https://images.unsplash.com/photo-1541746972996-4e0b0f43e02a?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=500&q=60");
background-repeat: no-repeat;
background-attachment: fixed;
background-size: 100% 100%;
}

/* main-header start */

[data-target="#mainMenu"] {
position: relative;
z-index: 999;
}

#mainMenu li > a {
font-size: 16px;
letter-spacing: 1px;
color: #fff;
font-weight: 400;
/* position relative to its previous postion */
position: relative;
z-index: 1;
text-decoration: none;
}

.main-header.fixed-nav #mainMenu li > a {
color: #fff;
text-decoration: none;
}

#mainMenu li:not(:last-of-type) {
margin-right: 30px;
}

#mainMenu li > a::before {
position: absolute;
content: "";
width: calc(100% - 1px);
height: 1px;
background: #fff;
bottom: -6px;
left: 0;
-webkit-transform: scale(0, 1);
-ms-transform: scale(0, 1);
transform: scale(0, 1);
-webkit-transform-origin: right center;
-ms-transform-origin: right center;
transform-origin: right center;
z-index: -1;
-webkit-transition: transform 0.5s ease;
transition: transform 0.5s ease;
}

#mainMenu li > a:hover::before,
#mainMenu li > a.active::before {
-webkit-transform: scale(1, 1);
-ms-transform: scale(1, 1);
transform: scale(1, 1);
-webkit-transform-origin: left center;
-ms-transform-origin: left center;
transform-origin: left center;
}

.main-header.fixed-nav #mainMenu li > a::before {
background: #000;
}

.main-header {
position: relative;
left: 0;
z-index: 99;
width: 100%;
-webkit-transition: all 0.4s ease;
transition: all 0.4s ease;
}

.main-header.fixed-nav {
top: 0;
background: #fff;
-webkit-box-shadow: 0 8px 12px -8px rgba(0, 0, 0, 0.09);
box-shadow: 0 8px 12px -8px rgba(0, 0, 0, 0.09);
-webkit-transition: all 0.4s ease;
transition: all 0.4s ease;
}



/* main-header end */

@media (max-width: 991px) {
/*header starts*/
.collapse.in {
display: block !important;
padding: 0;
clear: both;
}
.navbar-toggler {
margin: 0;
padding: 0;
width: 40px;
height: 30px;
position: static;
margin-top: 10px;
border: none;
border-radius: 0;
outline: none !important;
}
.main-header {
padding-top: 10px;
}
.main-header .navbar {
float: none;
width: 100%;
padding-left: 0;
padding-right: 0;
text-align: center;
}
.main-header .navbar-nav {
margin-top: 50px;
text-align: initial;
}
.main-header .navbar-nav li .nav-link {
text-align: center;
padding: 20px 15px;
border-radius: 0px;
}
/**/
.main-header .navbar-toggler .icon-bar {
background-color: #fff;
margin: 0 auto 6px;
border-radius: 0;
width: 30px;
height: 3px;
position: absolute;
right: 0;
-webkit-transition: all 0.2s ease;
transition: all 0.2s ease;
}
.main-header .navbar .navbar-toggler .icon-bar:first-child {
margin-top: 3px;
}
.main-header .navbar-toggler .icon-bar-1 {
width: 10px;
top: 0px;
}
.main-header .navbar-toggler .icon-bar-2 {
width: 16px;
top: 12px;
}
.main-header .navbar-toggler .icon-bar-3 {
width: 20px;
top: 21px;
}
.main-header .current .icon-bar {
margin-bottom: 5px;
border-radius: 0;
display: block;
}
.main-header .current .icon-bar-1 {
width: 18px;
}
.main-header .current .icon-bar-2 {
width: 30px;
}
.main-header .current .icon-bar-3 {
width: 10px;
}
.main-header .navbar-toggler:hover .icon-bar {
background-color: #fff;
}
.main-header .navbar-toggler:focus .icon-bar {
background-color: #fff;
}
/*header ends*/
#mainMenu li {
width: 200px;
text-align: left;
margin-left: 20%;
margin-bottom: 10px;
}
}

/* Dropdown Content (Hidden by Default) */

.dropdown-content {
display: none;
position: absolute;
background-color: #f1f1f1;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
z-index: 1;
}

/* Links inside the dropdown */

.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}

/* Change color of dropdown links on hover */

.dropdown-content a:hover {
background-color: #ddd;
}

/* Show the dropdown menu on hover */

.dropdown:hover .dropdown-content {
display: block;
margin-left: 50%;
}

/* header ends */


/* footer starts */

.page-footer {
background: #272727;
}

.icon_name {
padding-left: 10px;
cursor: pointer;
}

.icon_name:hover {
color: #00ff00;
}

.dark-grey-text {
color: #fff;
}

/* footer ends */
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading