Updated html
This commit is contained in:
parent
7ac5d7c496
commit
0633f25691
|
@ -20,4 +20,6 @@ n/a
|
|||
|
||||
|
||||
# Images
|
||||
![1 Files List](images/pic1.png)
|
||||
![1 Videos List](images/pic1.png)
|
||||
![2 Video Playing](images/pic2.png)
|
||||
![3 Images List](images/pic3.png)
|
||||
|
|
BIN
images/pic1.png
BIN
images/pic1.png
Binary file not shown.
Before Width: | Height: | Size: 609 KiB After Width: | Height: | Size: 1.6 MiB |
Binary file not shown.
After Width: | Height: | Size: 1.4 MiB |
Binary file not shown.
After Width: | Height: | Size: 2.4 MiB |
|
@ -3,9 +3,9 @@
|
|||
"auth_uri": "https://www.ssoapps.com/auth/realms/apps/protocol/openid-connect/auth",
|
||||
"client_id": "apps",
|
||||
"issuer": "https://www.ssoapps.com/auth/realms/apps",
|
||||
"client_secret": "ce6fdb7d-fdcb-46ea-bc80-b5df9649d50b",
|
||||
"client_secret": "9028c2ac-d6e0-4d96-86bd-02624b91695d",
|
||||
"redirect_uris": [
|
||||
"https://www.webfm.com/home"
|
||||
"https%3A%2F%2Fwww.webfm.com%2F"
|
||||
],
|
||||
"userinfo_uri": "https://www.ssoapps.com/auth/realms/apps/protocol/openid-connect/userinfo",
|
||||
"token_uri": "https://www.ssoapps.com/auth/realms/apps/protocol/openid-connect/token",
|
||||
|
|
|
@ -53,10 +53,10 @@ class ProductionConfig(Config):
|
|||
|
||||
|
||||
class DevelopmentConfig(Config):
|
||||
DEBUG = True
|
||||
DEBUG = True
|
||||
USE_RELOADER = True
|
||||
OIDC_ID_TOKEN_COOKIE_SECURE = False
|
||||
OIDC_REQUIRE_VERIFIED_EMAIL = False
|
||||
USE_RELOADER = True
|
||||
|
||||
|
||||
class TestingConfig(Config):
|
||||
|
|
|
@ -51,7 +51,7 @@
|
|||
}
|
||||
|
||||
.viewer {
|
||||
max-width: 60em;
|
||||
max-width: 55em;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -50,6 +50,11 @@
|
|||
</i>
|
||||
</li>
|
||||
{% endif %}
|
||||
<li class="nav-item" data-toggle="modal" data-target="#options-modal">
|
||||
<i class="nav-link fa fa-gear" aria-hidden="true" title="Other options..." >
|
||||
Settings
|
||||
</i>
|
||||
</li>
|
||||
{% if current_user.is_authenticated or oidc_loggedin() %}
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="{{ url_for('logout') }}">
|
||||
|
@ -57,12 +62,7 @@
|
|||
</a>
|
||||
</li>
|
||||
{% endif %}
|
||||
<li class="nav-item" data-toggle="modal" data-target="#options-modal">
|
||||
<i class="nav-link fa fa-gear" aria-hidden="true" title="Other options..." >
|
||||
Settings
|
||||
</i>
|
||||
</li>
|
||||
{% if not current_user.is_authenticated %}
|
||||
{% if not current_user.is_authenticated and not oidc_loggedin() %}
|
||||
<li class="nav-item dropdown">
|
||||
<a class="nav-link dropdown-toggle" href="#" id="navbardrop" data-toggle="dropdown">
|
||||
Account
|
||||
|
|
Loading…
Reference in New Issue