This commit is contained in:
George Shaw 2018-05-15 14:57:50 -05:00
parent 95d39f27bb
commit 77112df735
15 changed files with 26 additions and 4 deletions

View file

@ -1,11 +1,11 @@
# gPanel ![TravisCI gPanel Build](https://travis-ci.org/Ennovar/gPanel.svg?branch=master)
![gPanel Logo](logo/gpanel-general.jpg)
A web-hosting control panel written in Go.
*__Note:__ This software currently only runs on Linux systems.*
This project may qualify for Mozilla's 2018 Global Sprint, in efforts to satisfy their rules I am linking their Community Participation Guidelines [here](https://www.mozilla.org/en-US/about/governance/policies/participation/) along with their already being a code of conduct within this project located [here](https://github.com/Ennovar/gPanel/blob/master/CODE_OF_CONDUCT.md).
## Table of Contents
1. [Technology Stack](#technology-stack)
2. [Preview Images](#preview-images)

View file

@ -28,6 +28,11 @@ body {
.btn {
cursor:pointer;
}
.loginLogo img {
width:600px;
height:auto;
}
/* General End */
/* IP Filter Modal Start */

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

View file

@ -25,6 +25,12 @@
</nav>
<div class="container">
<div class="row mb-3">
<div class="col-12 text-center loginLogo">
<img class="img-fluid" src="assets/img/gpanel-account.jpg" alt="gPanel Account">
</div>
</div>
<div class="row">
<div class="col-12 d-flex justify-content-center align-items-center">

BIN
logo/gpanel-account.psd Normal file

Binary file not shown.

BIN
logo/gpanel-general.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 43 KiB

BIN
logo/gpanel-general.psd Normal file

Binary file not shown.

BIN
logo/gpanel-logo-small.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

BIN
logo/gpanel-logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

BIN
logo/gpanel-server.psd Normal file

Binary file not shown.

View file

@ -16,7 +16,7 @@ import (
func reqAuth(path string) bool {
path = strings.ToLower(path)
dismissibleTypes := []string{".css", ".js"}
dismissibleTypes := []string{".css", ".js", ".jpg", ".png", ".ico"}
for _, t := range dismissibleTypes {
if strings.HasSuffix(path, t) {
return false

View file

@ -15,7 +15,7 @@ import (
func reqAuth(path string) bool {
path = strings.ToLower(path)
dismissibleTypes := []string{".css", ".js"}
dismissibleTypes := []string{".css", ".js", ".jpg", ".png", ".ico"}
for _, t := range dismissibleTypes {
if strings.HasSuffix(path, t) {
return false

View file

@ -28,4 +28,9 @@ body {
.btn {
cursor:pointer;
}
.loginLogo img {
width:600px;
height:auto;
}
/* General End */

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

View file

@ -25,6 +25,12 @@
</nav>
<div class="container">
<div class="row mb-3">
<div class="col-12 text-center loginLogo">
<img class="img-fluid" src="assets/img/gpanel-server.jpg" alt="gPanel Server">
</div>
</div>
<div class="row">
<div class="col-12 d-flex justify-content-center align-items-center">