Converted to python flask #1
@ -20,4 +20,6 @@ n/a
|
|||||||
|
|
||||||
|
|
||||||
# Images
|
# 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.
After Width: | Height: | Size: 1.6 MiB |
BIN
images/pic2.png
Normal file
BIN
images/pic2.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.4 MiB |
BIN
images/pic3.png
Normal file
BIN
images/pic3.png
Normal file
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",
|
"auth_uri": "https://www.ssoapps.com/auth/realms/apps/protocol/openid-connect/auth",
|
||||||
"client_id": "apps",
|
"client_id": "apps",
|
||||||
"issuer": "https://www.ssoapps.com/auth/realms/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": [
|
"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",
|
"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",
|
"token_uri": "https://www.ssoapps.com/auth/realms/apps/protocol/openid-connect/token",
|
||||||
|
@ -54,9 +54,9 @@ class ProductionConfig(Config):
|
|||||||
|
|
||||||
class DevelopmentConfig(Config):
|
class DevelopmentConfig(Config):
|
||||||
DEBUG = True
|
DEBUG = True
|
||||||
|
USE_RELOADER = True
|
||||||
OIDC_ID_TOKEN_COOKIE_SECURE = False
|
OIDC_ID_TOKEN_COOKIE_SECURE = False
|
||||||
OIDC_REQUIRE_VERIFIED_EMAIL = False
|
OIDC_REQUIRE_VERIFIED_EMAIL = False
|
||||||
USE_RELOADER = True
|
|
||||||
|
|
||||||
|
|
||||||
class TestingConfig(Config):
|
class TestingConfig(Config):
|
||||||
|
@ -51,7 +51,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.viewer {
|
.viewer {
|
||||||
max-width: 60em;
|
max-width: 55em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -50,6 +50,11 @@
|
|||||||
</i>
|
</i>
|
||||||
</li>
|
</li>
|
||||||
{% endif %}
|
{% 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() %}
|
{% if current_user.is_authenticated or oidc_loggedin() %}
|
||||||
<li class="nav-item">
|
<li class="nav-item">
|
||||||
<a class="nav-link" href="{{ url_for('logout') }}">
|
<a class="nav-link" href="{{ url_for('logout') }}">
|
||||||
@ -57,12 +62,7 @@
|
|||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<li class="nav-item" data-toggle="modal" data-target="#options-modal">
|
{% if not current_user.is_authenticated and not oidc_loggedin() %}
|
||||||
<i class="nav-link fa fa-gear" aria-hidden="true" title="Other options..." >
|
|
||||||
Settings
|
|
||||||
</i>
|
|
||||||
</li>
|
|
||||||
{% if not current_user.is_authenticated %}
|
|
||||||
<li class="nav-item dropdown">
|
<li class="nav-item dropdown">
|
||||||
<a class="nav-link dropdown-toggle" href="#" id="navbardrop" data-toggle="dropdown">
|
<a class="nav-link dropdown-toggle" href="#" id="navbardrop" data-toggle="dropdown">
|
||||||
Account
|
Account
|
||||||
|
Loading…
Reference in New Issue
Block a user