Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
J
JARVIS
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacob Dylan D. Vitug
JARVIS
Commits
cbd6c349
Commit
cbd6c349
authored
Apr 02, 2023
by
Jacob Dylan D. Vitug
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Started on Signup/Login Page. Errors faced in CSS
parent
ff93298f
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
43 additions
and
26 deletions
+43
-26
base.css
IPSystemTOPC/EmployeeProdDB/static/css/base.css
+0
-0
loginpage.css
IPSystemTOPC/EmployeeProdDB/static/css/loginpage.css
+16
-0
base.html
...temTOPC/EmployeeProdDB/templates/EmployeeProdDB/base.html
+15
-21
home.html
...temTOPC/EmployeeProdDB/templates/EmployeeProdDB/home.html
+11
-4
loginpage.html
...PC/EmployeeProdDB/templates/EmployeeProdDB/loginpage.html
+1
-1
No files found.
IPSystemTOPC/EmployeeProdDB/static/css/base.css
0 → 100644
View file @
cbd6c349
IPSystemTOPC/EmployeeProdDB/static/css/loginpage.css
View file @
cbd6c349
...
...
@@ -80,3 +80,19 @@ body {
background-color
:
white
;
border
:
1px
solid
black
;
}
.base-logo
{
width
:
50px
;
height
:
auto
;
}
.base-logo
img
{
width
:
50px
;
height
:
auto
;
}
.left-align-cont
{
margin
:
auto
;
display
:
flex
;
justify-content
:
left
;
}
\ No newline at end of file
IPSystemTOPC/EmployeeProdDB/templates/EmployeeProdDB/base.html
View file @
cbd6c349
<!DOCTYPE html>
{% load static %}
<!doctype html>
<html
lang=
"en"
>
<head>
<!-- <title> Base Template </title> -->
<link
rel=
"stylesheet"
href=
"https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800,900"
>
<link
rel=
"stylesheet"
href=
"https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
>
<link
rel=
"stylesheet"
href=
"{% static 'css/style.css' %}"
>
<link
rel=
"icon"
href=
"{% static 'images/topc_logo.png' %}"
sizes=
"9x16"
>
<link
rel=
"stylesheet"
href=
"https://cdn.jsdelivr.net/npm/bootstrap@4.1.3/dist/css/bootstrap.min.css"
integrity=
"sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO"
crossorigin=
"anonymous"
>
<link
rel=
"stylesheet"
href=
"{% static 'css/style.css' %}"
/>
<link
rel=
"stylesheet"
href=
"https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css"
integrity=
"sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65"
crossorigin=
"anonymous"
>
<link
rel=
"stylesheet"
href=
"{% static 'css/loginpage.css' %}"
>
</head>
<body>
<div
id=
"topbar"
>
<a
href=
"#"
><img
src=
"{% static 'images/topc_logo.jpg' %}"
class=
"img logo rounded-circle mb-5"
style=
"height: 50px; width: 50px;"
></a>
<div
id=
"topbar-text"
>
<h4>
Thousand Oaks Packaging Corporation
</h4>
<div
class=
"loginheader centercont"
>
<div
class=
"headertextcontainer"
>
<div
class=
"base-logo"
>
<a
href=
"#"
><img
src=
"{% static 'images/topc_logo.jpg' %}"
class=
"img logo rounded-circle"
></a>
</div>
<span>
Thousand Oaks Packaging Corporation
</span>
<h2>
Employee Performance
</h2>
</div>
<button
type=
"button"
class=
"btn btn-primary"
>
Primary
</button>
</div>
<!-- Page Content -->
{% block content %}
{% endblock %}
<script
src=
"https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity=
"sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin=
"anonymous"
></script>
<script
src=
"https://cdn.jsdelivr.net/npm/popper.js@1.14.3/dist/umd/popper.min.js"
integrity=
"sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49"
crossorigin=
"anonymous"
></script>
<script
src=
"https://cdn.jsdelivr.net/npm/bootstrap@4.1.3/dist/js/bootstrap.min.js"
integrity=
"sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy"
crossorigin=
"anonymous"
></script>
<script
src=
"https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.min.js"
integrity=
"sha384-cuYeSxntonz0PPNlHhBs68uyIAVpIIOZZ5JqeqvYYIcEL727kskC66kF92t6Xl2V"
crossorigin=
"anonymous"
></script>
</body>
<footer>
<p>
Copyright
©
<script>
document
.
write
(
new
Date
().
getFullYear
());
</script></p>
</footer>
...
...
IPSystemTOPC/EmployeeProdDB/templates/EmployeeProdDB/home.html
View file @
cbd6c349
...
...
@@ -4,15 +4,22 @@
{% block content %}
<head>
<title>
Login
</title>
<link
rel=
"stylesheet"
href=
"{% static 'css/style.css' %}"
/>
<link
rel=
"stylesheet"
href=
"https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css"
integrity=
"sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65"
crossorigin=
"anonymous"
>
<link
rel=
"stylesheet"
href=
"{% static 'css/loginpage.css' %}"
>
<title>
Home Page
</title>
</head>
<body>
<
div
style=
"width:100%
"
>
<
!-- <div class="
">
<h1>TOPC</h1>
<form>
<a
href=
"{% url 'upload_csv' %}"
><button
type=
"button"
class=
"btn btn-danger"
style=
"font-family:'Poppins'; position:absolute; right:2%; top:5%;"
>
Import File
</button></a>
</form>
</div>
<div><a href="{% url 'upload_csv' %}"><button type="button" class="btn btn-danger" style="font-family:'Poppins'; position:absolute; right:2%; top:5%;">Import File</button></a></div>
-->
<script
src=
"https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.min.js"
integrity=
"sha384-cuYeSxntonz0PPNlHhBs68uyIAVpIIOZZ5JqeqvYYIcEL727kskC66kF92t6Xl2V"
crossorigin=
"anonymous"
></script>
</body>
{% endblock %}
\ No newline at end of file
IPSystemTOPC/EmployeeProdDB/templates/EmployeeProdDB/loginpage.html
View file @
cbd6c349
...
...
@@ -10,7 +10,6 @@
<body>
<div
class=
"loginheader centercont"
>
<!-- <a href="#"><img src="{% static 'images/topc_logo.jpg' %}" class="img logo rounded-circle mb-5" style="height: 50px; width: 50px;"></a> -->
<div
class=
"headertextcontainer"
>
<span>
Thousand Oaks Packaging Corporation
</span>
<h2>
Employee Performance
</h2>
...
...
@@ -18,6 +17,7 @@
</div>
<!-- {% block content %} -->
<div
class=
"centercont column-direction"
>
<div
class=
"login-logo"
>
<a
href=
"#"
><img
src=
"{% static 'images/topc_logo.jpg' %}"
class=
"img logo rounded-circle"
></a>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment