added user management system
This commit is contained in:
parent
0b31a83f83
commit
8e855e0748
16 changed files with 446 additions and 3 deletions
BIN
invsystem/user_manager/static/user_manager/images/favicon.ico
Normal file
BIN
invsystem/user_manager/static/user_manager/images/favicon.ico
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.2 KiB |
BIN
invsystem/user_manager/static/user_manager/images/logo_32_32.png
Normal file
BIN
invsystem/user_manager/static/user_manager/images/logo_32_32.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.2 KiB |
BIN
invsystem/user_manager/static/user_manager/images/logo_50_50.png
Normal file
BIN
invsystem/user_manager/static/user_manager/images/logo_50_50.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.6 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 1 MiB |
231
invsystem/user_manager/static/user_manager/style.css
Normal file
231
invsystem/user_manager/static/user_manager/style.css
Normal file
|
|
@ -0,0 +1,231 @@
|
|||
.logo {
|
||||
height: 50px;
|
||||
width: 50px;
|
||||
}
|
||||
|
||||
.welcome {
|
||||
font-size: 14pt;
|
||||
color: darkgray;
|
||||
float: left;
|
||||
padding: 12px;
|
||||
}
|
||||
|
||||
.logo_not_logged_in {
|
||||
height: 50px;
|
||||
width: 50px;
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.navbar {
|
||||
margin: 5px;
|
||||
height: 70px;
|
||||
}
|
||||
|
||||
.reset {
|
||||
padding: 14px;
|
||||
}
|
||||
|
||||
.login-form {
|
||||
padding-top: 20px;
|
||||
}
|
||||
|
||||
.container-fluid {
|
||||
height: 50px;
|
||||
top: 50%;
|
||||
margin-top: -25px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.error {
|
||||
color: red;
|
||||
}
|
||||
|
||||
.userlist {
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
.profilecontainer {
|
||||
height: 60px;
|
||||
margin: 20px;
|
||||
padding: 10px;
|
||||
|
||||
}
|
||||
|
||||
.profilecontainer:hover {
|
||||
height: 60px;
|
||||
margin: 20px;
|
||||
-webkit-box-shadow: 3px 3px 28px -3px rgba(0, 0, 0, 0.64);
|
||||
-moz-box-shadow: 3px 3px 28px -3px rgba(0, 0, 0, 0.64);
|
||||
box-shadow: 3px 3px 28px -3px rgba(0, 0, 0, 0.64);
|
||||
border-radius: 10px;
|
||||
transition: 0.3s;
|
||||
|
||||
}
|
||||
|
||||
.profilepic {
|
||||
height: 50px;
|
||||
float: left;
|
||||
border-radius: 50%;
|
||||
margin-top: -5px;
|
||||
}
|
||||
|
||||
.profilename {
|
||||
position: relative;
|
||||
top: 16%;
|
||||
margin-left: 10px;
|
||||
font-size: 1.3em;
|
||||
}
|
||||
|
||||
.heading {
|
||||
font-size: 1.6em;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.btn-info {
|
||||
margin-left: 3%;
|
||||
}
|
||||
|
||||
.imgcontainer {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.profilepic-big {
|
||||
border-radius: 50%;
|
||||
margin-left: 70px;
|
||||
-webkit-box-shadow: 3px 3px 28px -3px rgba(0, 0, 0, 0.1);
|
||||
-moz-box-shadow: 3px 3px 28px -3px rgba(0, 0, 0, 0.1);
|
||||
box-shadow: 3px 3px 28px -3px rgba(0, 0, 0, 0.1);
|
||||
transition: 0.3s;
|
||||
margin-top: 15px;
|
||||
}
|
||||
|
||||
.info {
|
||||
font-size: 1.3em;
|
||||
margin: 20px;
|
||||
padding-top: 20px;
|
||||
padding-bottom: 20px;
|
||||
}
|
||||
|
||||
.shadow {
|
||||
-webkit-box-shadow: 3px 3px 28px -3px rgba(0, 0, 0, 0.1);
|
||||
-moz-box-shadow: 3px 3px 28px -3px rgba(0, 0, 0, 0.1);
|
||||
box-shadow: 3px 3px 28px -3px rgba(0, 0, 0, 0.1);
|
||||
border-radius: 10px;
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
.verified {
|
||||
height: 23px;
|
||||
width: 23px;
|
||||
}
|
||||
|
||||
.search {
|
||||
width: 210px;
|
||||
box-sizing: border-box;
|
||||
border: 2px solid #ccc;
|
||||
border-radius: 4px;
|
||||
font-size: 16px;
|
||||
background-color: white;
|
||||
background-position: 10px 10px;
|
||||
background-size: 24px 24px;
|
||||
background-repeat: no-repeat;
|
||||
padding: 12px 20px 12px 40px;
|
||||
-webkit-transition: width 0.4s ease-in-out;
|
||||
transition: width 0.4s ease-in-out;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.search:focus {
|
||||
width: 50%;
|
||||
}
|
||||
|
||||
.btn-del {
|
||||
margin-left: 30px;
|
||||
}
|
||||
|
||||
.profilepic-1 {
|
||||
height: 50px;
|
||||
float: left;
|
||||
border-radius: 50%;
|
||||
margin-top: -11px;
|
||||
margin-right: 10px;
|
||||
|
||||
}
|
||||
|
||||
.bot {
|
||||
font-size: 1.3em;
|
||||
margin-top: 1em;
|
||||
}
|
||||
|
||||
bot:hover {
|
||||
-webkit-box-shadow: 3px 3px 28px -3px rgba(0, 0, 0, 0.1);
|
||||
-moz-box-shadow: 3px 3px 28px -3px rgba(0, 0, 0, 0.1);
|
||||
box-shadow: 3px 3px 28px -3px rgba(0, 0, 0, 0.1);
|
||||
border-radius: 10px;
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
.botheading {
|
||||
margin-left: 0.5em;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.nodec {
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
.description {
|
||||
margin-left: 1em;
|
||||
}
|
||||
|
||||
.detaillist {
|
||||
margin-top: 20px;
|
||||
margin-bottom: 20px;
|
||||
font-size: 1.3em;
|
||||
}
|
||||
|
||||
.startbutton {
|
||||
margin-left: 1em;
|
||||
margin-top: 1em;
|
||||
float: left;
|
||||
order: 1;
|
||||
|
||||
}
|
||||
|
||||
.notrunning {
|
||||
color: red;
|
||||
margin-left: 1em;
|
||||
}
|
||||
|
||||
.running {
|
||||
color: greenyellow;
|
||||
margin-left: 1em;
|
||||
}
|
||||
|
||||
.red {
|
||||
color: red;
|
||||
}
|
||||
|
||||
.yellowgreen {
|
||||
color: yellowgreen;
|
||||
}
|
||||
|
||||
.btn-reload {
|
||||
margin-top: 1em;
|
||||
}
|
||||
|
||||
.uilink {
|
||||
margin-left: 1.1em;
|
||||
font-size: 1.3em;
|
||||
order: 2;
|
||||
}
|
||||
|
||||
.bot-btn-cont {
|
||||
height: 3em;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
}
|
||||
.stop-api-button{
|
||||
margin-top: 2em;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue