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
71a761e1
Commit
71a761e1
authored
May 16, 2023
by
Jacob Dylan D. Vitug
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
afds
parent
111ab061
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
51 additions
and
13 deletions
+51
-13
upload_csv.css
IPSystemTOPC/EmployeeProdDB/static/css/upload_csv.css
+23
-3
logo-circle.jpg
IPSystemTOPC/EmployeeProdDB/static/images/logo-circle.jpg
+0
-0
logo-circle.png
IPSystemTOPC/EmployeeProdDB/static/images/logo-circle.png
+0
-0
base.html
...temTOPC/EmployeeProdDB/templates/EmployeeProdDB/base.html
+3
-3
signin.html
...mTOPC/EmployeeProdDB/templates/EmployeeProdDB/signin.html
+2
-0
signup.html
...mTOPC/EmployeeProdDB/templates/EmployeeProdDB/signup.html
+2
-0
upload_csv.html
...C/EmployeeProdDB/templates/EmployeeProdDB/upload_csv.html
+21
-7
No files found.
IPSystemTOPC/EmployeeProdDB/static/css/upload_csv.css
View file @
71a761e1
...
...
@@ -21,7 +21,7 @@ body {
/* align-items: center; */
}
.cf-button
{
.cf-button
{
width
:
20%
;
border-radius
:
4px
;
border
:
1px
solid
white
;
...
...
@@ -33,7 +33,18 @@ body {
background-color
:
#00802B
;
color
:
white
;
}
.input
[
type
=
file
],
[
type
=
submit
]
{
display
:
none
;
}
.custom-file-upload
{
border
:
1px
solid
#ccc
;
display
:
inline-block
;
padding
:
6px
12px
;
cursor
:
pointer
;
}
.upload-table-cont
{
color
:
white
;
height
:
200px
;
...
...
@@ -79,6 +90,15 @@ body {
width
:
15%
;
}
.button-cont
input
{
border-radius
:
4px
;
border
:
1px
solid
;
padding
:
5px
10px
;
margin-left
:
5px
;
margin-right
:
5px
;
width
:
15%
;
}
.cancel-button
{
background-color
:
white
;
color
:
black
;
...
...
@@ -87,4 +107,4 @@ body {
.confirm-button
{
background-color
:
#00802B
;
color
:
white
;
}
\ No newline at end of file
}
IPSystemTOPC/EmployeeProdDB/static/images/logo-circle.jpg
0 → 100644
View file @
71a761e1
11.3 KB
IPSystemTOPC/EmployeeProdDB/static/images/logo-circle.png
0 → 100644
View file @
71a761e1
121 KB
IPSystemTOPC/EmployeeProdDB/templates/EmployeeProdDB/base.html
View file @
71a761e1
...
...
@@ -15,7 +15,8 @@
<!-- <link rel="stylesheet" href="{% static 'css/loginpage.css' %}"> -->
<link
rel =
"icon"
href =
"{% static 'images/topc_logo.jpg' %}"
type =
"image/x-icon"
>
<link
rel =
"icon"
href =
"{% static 'images/logo-circle.png' %}"
type =
"image/x-icon"
>
<title>
{% block title %}{% endblock %}
</title>
</head>
...
...
@@ -25,8 +26,7 @@
<div
class=
"base-header"
>
<div
class=
"base-header-align"
>
<div
class=
"base-logo"
>
<a
href=
"#"
><img
<a><img
src=
"{% static 'images/topc_logo.jpg' %}"
class=
"img logo rounded-circle"
/></a>
...
...
IPSystemTOPC/EmployeeProdDB/templates/EmployeeProdDB/signin.html
View file @
71a761e1
...
...
@@ -6,6 +6,8 @@
<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/signin.css' %}"
>
<link
rel =
"icon"
href =
"{% static 'images/logo-circle.png' %}"
type =
"image/x-icon"
>
</head>
<body>
...
...
IPSystemTOPC/EmployeeProdDB/templates/EmployeeProdDB/signup.html
View file @
71a761e1
...
...
@@ -6,6 +6,8 @@
<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/signup.css' %}"
>
</head>
<body>
...
...
IPSystemTOPC/EmployeeProdDB/templates/EmployeeProdDB/upload_csv.html
View file @
71a761e1
...
...
@@ -14,12 +14,23 @@
<link
rel=
"stylesheet"
href=
"{% static 'css/upload_csv.css' %}"
/>
<title>
Home Page
</title>
</head>
<body>
<div
class=
"top-cont"
>
<h1
clas=
"choose-file"
>
Choose file
</h1>
<div
class=
"secondline"
>
<textarea
readonly
></textarea>
<button
type=
"submit"
class=
"cf-button"
>
Choose File
</button>
<form
method=
"post"
enctype=
"multipart/form-data"
action=
"{% url 'upload_csv' %}"
>
{% csrf_token %}
<!-- <label for="file">Upload File</label> -->
<div
class=
"top-cont"
>
<h1
class=
"choose-file"
>
Choose file
</h1>
<div
class=
"secondline"
>
<textarea
readonly
></textarea>
<input
type=
"file"
name=
"file"
id=
"file"
class=
""
/>
<!-- <label for="file"></label> -->
<!-- <label for="file" class="custom-file-upload">
Custom Upload
</label>
<input id="file" type="file"/> -->
</div>
</div>
...
...
@@ -29,7 +40,10 @@
<div
class=
"button-cont top-cont"
>
<button
type=
"submit"
class=
"cancel-button"
>
Cancel
</button>
<button
type=
"submit"
class=
"confirm-button"
>
Confirm
</button>
<input
type=
"submit"
value=
"Confirm"
class=
"confirm-button"
>
</div>
</form>
</body>
{% endblock %}
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