Merge pull request #144 from george-e-shaw-iv/master

logo insertion
This commit is contained in:
George Shaw 2018-05-15 15:18:25 -05:00 committed by GitHub
commit 36bf57a2c1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
15 changed files with 31 additions and 7 deletions

View file

@ -1,11 +1,13 @@
# gPanel ![TravisCI gPanel Build](https://travis-ci.org/Ennovar/gPanel.svg?branch=master)
<p align="center"><img src="logo/gpanel-general.jpg" width="600"></p>
<p align="center" style="text-size:10px;">Logo by <a href="https://www.github.com/bvhme">@bvhme</a></p>
<p align="center"><a href="https://travis-ci.org/Ennovar/gPanel"><img src="https://travis-ci.org/Ennovar/gPanel.svg?branch=master"></a></p>
# gPanel
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)
@ -19,7 +21,7 @@ This project may qualify for Mozilla's 2018 Global Sprint, in efforts to satisfy
## Technology Stack
Backend: __[Go (1.8+)](https://golang.org/)__
Backend: __[Go (1.9.2+)](https://golang.org/)__
Database: __[Bolt](https://github.com/boltdb/bolt)__
CSS Toolkit(s): __[Bootstrap 4](http://getbootstrap.com/) & [Font Awesome](http://fontawesome.io/)__
JS Toolkit(s): __[jQuery](https://jquery.com/)__
@ -27,7 +29,7 @@ JS Toolkit(s): __[jQuery](https://jquery.com/)__
## Preview Images
gPanel Structure
![Image of gPanel Structure](https://nextwavesolutions.io/images/gPanelStructure.png)
![Image of gPanel Structure](https://user-images.githubusercontent.com/30050545/40080488-b1f90d64-5850-11e8-81c4-be95c65eca17.png)
gPanel Server
![Image of gPanel Server](https://user-images.githubusercontent.com/30050545/36277136-9d0cdffc-1255-11e8-8a33-b503087a32f8.png)

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">