Skip to content

Commit 457ed28

Browse files
committed
Initial change of theme.
Only themed pages currently are login and reset password pages.
1 parent 16a3514 commit 457ed28

File tree

119 files changed

+756
-1701
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

119 files changed

+756
-1701
lines changed

.phraseapp.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,18 @@ phraseapp:
99
- file: ./resources/lang/<locale_code>/auth.php
1010
params:
1111
tag: "auth"
12-
- file: ./resources/lang/<locale_code>/base.php
13-
params:
14-
tag: "base"
12+
# - file: ./resources/lang/<locale_code>/base.php
13+
# params:
14+
# tag: "base"
1515
- file: ./resources/lang/<locale_code>/pagination.php
1616
params:
1717
tag: "pagination"
1818
- file: ./resources/lang/<locale_code>/passwords.php
1919
params:
2020
tag: "passwords"
21-
- file: ./resources/lang/<locale_code>/server.php
22-
params:
23-
tag: "server"
21+
# - file: ./resources/lang/<locale_code>/server.php
22+
# params:
23+
# tag: "server"
2424
- file: ./resources/lang/<locale_code>/strings.php
2525
params:
2626
tag: "strings"

app/Http/Routes/AuthRoutes.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ public function map(Router $router)
7575

7676
// Handle Verification
7777
$router->post('password/reset', [
78+
'as' => 'auth.reset.post',
7879
'uses' => 'Auth\ResetPasswordController@reset',
7980
]);
8081
});

config/themes.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,10 @@
1212
'views-path' => 'default',
1313
'asset-path' => 'themes/default',
1414
],
15+
'pterodactyl' => [
16+
'extends' => null,
17+
'views-path' => 'pterodactyl',
18+
'asset-path' => 'themes/pterodactyl',
19+
],
1520
],
1621
];
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
/**
2+
* Pterodactyl - Panel
3+
* Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com>
4+
*
5+
* Permission is hereby granted, free of charge, to any person obtaining a copy
6+
* of this software and associated documentation files (the "Software"), to deal
7+
* in the Software without restriction, including without limitation the rights
8+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
* copies of the Software, and to permit persons to whom the Software is
10+
* furnished to do so, subject to the following conditions:
11+
*
12+
* The above copyright notice and this permission notice shall be included in all
13+
* copies or substantial portions of the Software.
14+
*
15+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
* SOFTWARE.
22+
*/
23+
24+
.login-box, .register-box {
25+
width: 460px;
26+
}
27+
28+
.weight-100 {
29+
font-weight: 100;
30+
}
31+
32+
.weight-300 {
33+
font-weight: 300;
34+
}
35+
36+
.btn-clear {
37+
background: transparent;
38+
}

public/themes/pterodactyl/vendor/adminlte/admin.min.css

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/themes/pterodactyl/vendor/adminlte/app.min.js

Lines changed: 13 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/themes/pterodactyl/vendor/bootstrap/bootstrap-theme.min.css

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/themes/pterodactyl/vendor/bootstrap/bootstrap-theme.min.css.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/themes/pterodactyl/vendor/bootstrap/bootstrap.min.css

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/themes/pterodactyl/vendor/bootstrap/bootstrap.min.css.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)