diff --git a/document_roots/webhost/README.md b/document_roots/webhost/README.md new file mode 100644 index 0000000..dbb2df1 --- /dev/null +++ b/document_roots/webhost/README.md @@ -0,0 +1,22 @@ +# ePanel ! + +A client side of gPanel + +## Stack + +See guidelines from gPanel + +## Contribution Set-up & Deployment + +Layout and Components +```shell +gPanel/document_roots/webhost/ePanel.html +``` + +Styles +```shell +gPanel/document_roots/webhost/styles.css +``` + + +## Enjoy static pages ;) \ No newline at end of file diff --git a/document_roots/webhost/ePanel.html b/document_roots/webhost/ePanel.html new file mode 100644 index 0000000..b574af6 --- /dev/null +++ b/document_roots/webhost/ePanel.html @@ -0,0 +1,142 @@ + + + + Ennovar Panel + + + + + + + + + + + + + +
+
+
+
+ +
+ +
+
Basic WebHost Manager Setup
+
Change Root Password
+
Configure ePanel Cron Jobs
+
Initial Quota Setup
+
Server Time
+
Statistics Software Configuration
+
Tweak Settings
+
Update Preferences
+
+
+ +
+
+

+ Support +

+
+
+
Create Support Ticket
+
Grant ePanel Support Access
+
Support Center
+
+
+ +
+ +
+
Change Hostname
+
Resolver Configuration
+
+
+ +
+
+

+ Help Wanted +

+
+
+ +
+
+

+ Help Wanted +

+
+
+ +
+
+

+ Help Wanted +

+
+
+ +
+
+

+ Help Wanted +

+
+
+ +
+
+
+

Help Wanted

+
+

Help Wanted

+
+

Help Wanted

+
+

Help Wanted

+
+
Help Wanted
+
+
Help Wanted
+
+
+
+ + + + + + + + \ No newline at end of file diff --git a/document_roots/webhost/index.html b/document_roots/webhost/index.html index 2549d76..f0d770b 100644 --- a/document_roots/webhost/index.html +++ b/document_roots/webhost/index.html @@ -1,59 +1,59 @@ - - Private Test - - - -
- - - - - - - - - - - - - - - - - - - -
gPanel Login
Username:
Password:
-
+ + Private Test + + + +
+ + + + + + + + + + + + + + + + + + + +
gPanel Login
Username:
Password:
+
- - + } + formData['redirect'] = 'ePanel.html'; + console.log(formData); //debugging + console.log(form.action); + + var xhr = new XMLHttpRequest(); + xhr.open(form.method, form.action, true); + xhr.setRequestHeader('Content-Type', 'application/json; charset=UTF-8'); + xhr.send(JSON.stringify(formData)); + + xhr.onloadend = function() { + console.log(xhr.status); + } + } + + diff --git a/document_roots/webhost/styles.css b/document_roots/webhost/styles.css new file mode 100644 index 0000000..f5c0a25 --- /dev/null +++ b/document_roots/webhost/styles.css @@ -0,0 +1,31 @@ +/* Remove the navbar's default margin-bottom and rounded borders */ +.navbar { + margin-bottom: 0; + border-radius: 0; +} + +/* Set height of the grid so .sidenav can be 100% (adjust as needed) */ +.row.content {height: 450px} + +/* Set gray background color and 100% height */ +.sidenav { + padding-top: 20px; + background-color: #f1f1f1; + height: 100%; +} + +/* Set black background color, white text and some padding */ +footer { + background-color: #555; + color: white; + padding: 15px; +} + +/* On small screens, set height to 'auto' for sidenav and grid */ +@media screen and (max-width: 767px) { + .sidenav { + height: auto; + padding: 15px; + } + .row.content {height:auto;} +} \ No newline at end of file