From 4bea179ad4c79723e0dd899b8e8661b236080c77 Mon Sep 17 00:00:00 2001 From: Yamozha Date: Sat, 27 Feb 2021 20:31:53 +0200 Subject: [PATCH] some front end made by @vassdeniss implemented by me --- .../home/__pycache__/admin.cpython-36.pyc | Bin 182 -> 182 bytes .../home/__pycache__/models.cpython-36.pyc | Bin 179 -> 179 bytes .../home/__pycache__/views.cpython-36.pyc | Bin 474 -> 474 bytes reValuate/home/static/home/css/style.css | 7 +++++++ reValuate/home/static/home/css/upload.css | 16 ++++++++-------- reValuate/templates/base.html | 17 ++++++++--------- reValuate/templates/uploadChoice.html | 2 +- reValuate/templates/uploadImage.html | 4 +++- reValuate/templates/uploadVideo.html | 4 +++- .../__pycache__/__init__.cpython-36.pyc | Bin 143 -> 143 bytes .../upload/__pycache__/admin.cpython-36.pyc | Bin 184 -> 184 bytes .../upload/__pycache__/forms.cpython-36.pyc | Bin 988 -> 988 bytes .../upload/__pycache__/models.cpython-36.pyc | Bin 1685 -> 1685 bytes .../__pycache__/validators.cpython-36.pyc | Bin 794 -> 794 bytes .../upload/__pycache__/views.cpython-36.pyc | Bin 1900 -> 1900 bytes .../users/__pycache__/admin.cpython-36.pyc | Bin 183 -> 183 bytes .../users/__pycache__/models.cpython-36.pyc | Bin 713 -> 713 bytes .../users/__pycache__/urls.cpython-36.pyc | Bin 292 -> 292 bytes .../users/__pycache__/views.cpython-36.pyc | Bin 1217 -> 1217 bytes .../__pycache__/0001_initial.cpython-36.pyc | Bin 893 -> 893 bytes .../0002_auto_20210220_2131.cpython-36.pyc | Bin 534 -> 534 bytes .../0003_auto_20210220_2142.cpython-36.pyc | Bin 589 -> 589 bytes .../0004_auto_20210220_2143.cpython-36.pyc | Bin 794 -> 794 bytes .../__pycache__/__init__.cpython-36.pyc | Bin 153 -> 153 bytes .../__pycache__/settings.cpython-36.pyc | Bin 2609 -> 2609 bytes .../website/__pycache__/urls.cpython-36.pyc | Bin 1768 -> 1768 bytes .../website/__pycache__/wsgi.cpython-36.pyc | Bin 547 -> 547 bytes 27 files changed, 30 insertions(+), 20 deletions(-) diff --git a/reValuate/home/__pycache__/admin.cpython-36.pyc b/reValuate/home/__pycache__/admin.cpython-36.pyc index 92e78b5cdfda7ae9ba4a106ecaad21922c63655c..543ea2011a40cc60684deb037aff70418af45ba2 100644 GIT binary patch delta 14 VcmdnSxQ&s`n3tE!yKN%d1^^qT1LObz delta 14 VcmdnSxQ&s`n3tEUuVy0K1^^t*1RVeX diff --git a/reValuate/home/__pycache__/models.cpython-36.pyc b/reValuate/home/__pycache__/models.cpython-36.pyc index 5395fe7ecb96b66d17b35f48e18f35968919530a..ce5b0d831a4de41427106180b388b9e94fc6745b 100644 GIT binary patch delta 14 VcmdnYxS5g7n3tE!yKN%dS^yhW1KR)q delta 14 VcmdnYxS5g7n3tEUuVy0KS^yk;1QY-O diff --git a/reValuate/home/__pycache__/views.cpython-36.pyc b/reValuate/home/__pycache__/views.cpython-36.pyc index 82c09c530d7138f45d2873997bc319f8e64d2c75..913d4d9cc1eb5d26cee61139b75e83f9cfaa6724 100644 GIT binary patch delta 15 Wcmcb`e2baQn3tE!yKN)e6-EFgcLa3+ delta 15 Wcmcb`e2baQn3tEUuVy3L6-EFh*95Kr diff --git a/reValuate/home/static/home/css/style.css b/reValuate/home/static/home/css/style.css index 9e00cb41..3d6a2240 100644 --- a/reValuate/home/static/home/css/style.css +++ b/reValuate/home/static/home/css/style.css @@ -5,6 +5,7 @@ --colour-white: #fff; --colour-black: #1a1a1a; } + @viewport { width: device-width ; zoom: 1.0 ; @@ -29,6 +30,9 @@ html { transform: translate(-50%, -50%); top: 50%; } +.dropdown-item{ + font-size:100% +} body{ font-size: 1.2em; font-family: 'Roboto', sans-serif; @@ -36,7 +40,10 @@ body{ } +.navview{ + width:100%; +} #active { background-color: #4CAF50; } diff --git a/reValuate/home/static/home/css/upload.css b/reValuate/home/static/home/css/upload.css index abb81aa3..efff0521 100644 --- a/reValuate/home/static/home/css/upload.css +++ b/reValuate/home/static/home/css/upload.css @@ -1,16 +1,16 @@ @import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap'); .fancyButton { - border: 25% solid green; + border: auto solid green; background-color: transparent; - padding: 50% 25%; + padding: 38% 35%; text-align: center; - border-radius: 100%; + border-radius: 2%; transition-duration: 0.4s; - color: black; + color: rgb(0, 0, 0); outline: none; font-family: 'Roboto', sans-serif !important; - font-size: 10px; + font-size: 30px; box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19); } @@ -24,7 +24,7 @@ button:focus { } button { - margin: 25% 25% 25% 25%; - width: 45%; - height: 45%; + margin: auto; + width: auto; + height: auto; } \ No newline at end of file diff --git a/reValuate/templates/base.html b/reValuate/templates/base.html index 0fb95750..688bcc17 100644 --- a/reValuate/templates/base.html +++ b/reValuate/templates/base.html @@ -20,37 +20,36 @@ + -
diff --git a/reValuate/templates/uploadChoice.html b/reValuate/templates/uploadChoice.html index e18b1003..d5ea8c4b 100644 --- a/reValuate/templates/uploadChoice.html +++ b/reValuate/templates/uploadChoice.html @@ -7,7 +7,7 @@ {% block content %} {% if user.is_authenticated %} - Hi {{ user.username }}!
+

Hi {{ user.username }}!

diff --git a/reValuate/templates/uploadImage.html b/reValuate/templates/uploadImage.html index 44e97ee0..700a8e79 100644 --- a/reValuate/templates/uploadImage.html +++ b/reValuate/templates/uploadImage.html @@ -1,8 +1,9 @@ {% extends 'base.html' %} -{% block title %} Home {% endblock %} +{% block title %} Image Upload {% endblock %} {% block content %} +
{% if user.is_authenticated %} Hi {{ user.username }} {{ user.id }}!
@@ -19,4 +20,5 @@

You are not logged in

Log In {% endif %} +
{% endblock %} diff --git a/reValuate/templates/uploadVideo.html b/reValuate/templates/uploadVideo.html index f3aefc41..57b17a4f 100644 --- a/reValuate/templates/uploadVideo.html +++ b/reValuate/templates/uploadVideo.html @@ -1,8 +1,9 @@ {% extends 'base.html' %} -{% block title %} Home {% endblock %} +{% block title %} Upload Video {% endblock %} {% block content %} +
{% if user.is_authenticated %} Hi {{ user.username }}!
@@ -19,4 +20,5 @@

You are not logged in

Log In {% endif %} +
{% endblock %} diff --git a/reValuate/upload/__pycache__/__init__.cpython-36.pyc b/reValuate/upload/__pycache__/__init__.cpython-36.pyc index 3543a82dfd17325dc10b3fd9eef951dd9fe5a25e..92f5b5f8d58a39f51597d36962a0bd0dcbd5161b 100644 GIT binary patch delta 14 VcmeBY>}O;%=H=z`X`9H_2>=(418@KU delta 14 VcmeBY>}O;%=H=z;ubIf!2>=+i1E~N2 diff --git a/reValuate/upload/__pycache__/admin.cpython-36.pyc b/reValuate/upload/__pycache__/admin.cpython-36.pyc index 55034b1aa97ee9d75814c378ac7da1b9b2fa156f..f6ca3d1a03d0d65988206057ca1749c149158776 100644 GIT binary patch delta 14 VcmdnNxPy_+n3tE!r)?tJCIB1Z1M2_) delta 14 VcmdnNxPy_+n3tEUzh)xaCIB4>1S9|e diff --git a/reValuate/upload/__pycache__/forms.cpython-36.pyc b/reValuate/upload/__pycache__/forms.cpython-36.pyc index 68eb5862b3db7e6f05673bef0fd06ecbab26d444..1ede93ebe6af5e66aa582c277353bc18b8cac714 100644 GIT binary patch delta 15 Wcmcb^eutgSn3tE!r)?wKHD&-MBLs#3 delta 15 Wcmcb^eutgSn3tEUzh)!bHD&-Ng9N_- diff --git a/reValuate/upload/__pycache__/models.cpython-36.pyc b/reValuate/upload/__pycache__/models.cpython-36.pyc index 1a3d75fdd3aa54811622f7c9e67b243f93dd8fa2..a74a77eec5c89e9ca20f9a1b615002890b0faa15 100644 GIT binary patch delta 15 WcmbQrJC&Esn3tE!r)?u!KN|oYa09>q delta 15 WcmbQrJC&Esn3tEUzh)y_KN|oZ&;$7Z diff --git a/reValuate/upload/__pycache__/validators.cpython-36.pyc b/reValuate/upload/__pycache__/validators.cpython-36.pyc index fa5da47aa6df4036b35ce251e7af87ed9539cd10..7a61ef8dec8e4d5930867dfda3dbdbfa0eb9a68e 100644 GIT binary patch delta 15 WcmbQmHj9nTn3tE!r)?vf2r~d2O#?mv delta 15 WcmbQmHj9nTn3tEUzh)zw2r~d3tpj%e diff --git a/reValuate/upload/__pycache__/views.cpython-36.pyc b/reValuate/upload/__pycache__/views.cpython-36.pyc index d3ea2073dcb577861e6f27e8320d97a2f46f79f2..da56580020986a6c4bc59b4349b613ba252812d5 100644 GIT binary patch delta 15 WcmaFE_lA$nn3tE!r)?u!8an_cy#z=A delta 15 WcmaFE_lA$nn3tEUzh)y_8an_e9Rz^@ diff --git a/reValuate/users/__pycache__/admin.cpython-36.pyc b/reValuate/users/__pycache__/admin.cpython-36.pyc index 86787e064a9ab341194485e0456aa0f3ba506d97..dbba83c86f75a2e89355d9230e2e84c637efecf9 100644 GIT binary patch delta 14 VcmdnaxSf&Bn3tE!r)?tJMgSYe1Lyz% delta 14 VcmdnaxSf&Bn3tEUzh)xaMgSb`1R($b diff --git a/reValuate/users/__pycache__/models.cpython-36.pyc b/reValuate/users/__pycache__/models.cpython-36.pyc index d7bf45382362fadd6c98a189d88792d4b5bf847e..5dc38bd459d8c851309a75720a0add964c774c6c 100644 GIT binary patch delta 15 WcmX@fdXkmRn3tE!r)?wKVI}|~v;;^1 delta 15 WcmX@fdXkmRn3tEUzh)!bVI}}16a;|) diff --git a/reValuate/users/__pycache__/urls.cpython-36.pyc b/reValuate/users/__pycache__/urls.cpython-36.pyc index 3cec742cee281bbbe56aa4778ad2eb042762007d..28c03dae9e8020a9392305dc6d903c44ce5eb4b6 100644 GIT binary patch delta 15 WcmZ3&w1kPxn3tE!r)?vf93uc74+ByF delta 15 WcmZ3&w1kPxn3tEUzh)zw93uc8Zv%?} diff --git a/reValuate/users/__pycache__/views.cpython-36.pyc b/reValuate/users/__pycache__/views.cpython-36.pyc index c3505c96076d5b5b3a69363fca6bfab2cd6a8abb..cef755f8c906f22341d16ee36893f1c111ac1003 100644 GIT binary patch delta 15 WcmX@ed61LMn3tE!r)?wKZWaI{E(AIN delta 15 WcmX@ed61LMn3tEUzh)!bZWaI|js$Z6 diff --git a/reValuate/users/migrations/__pycache__/0001_initial.cpython-36.pyc b/reValuate/users/migrations/__pycache__/0001_initial.cpython-36.pyc index 14e5485a43759129c85a8f447d40d72ed448f1d2..5a4aacdd92d576442b3954d12de370ae9fbbb4dd 100644 GIT binary patch delta 15 Wcmey%_Lq&#n3tE!r)?u!IWqt!=LBZ} delta 15 Wcmey%_Lq&#n3tEUzh)y_IWqt$M+Be% diff --git a/reValuate/users/migrations/__pycache__/0002_auto_20210220_2131.cpython-36.pyc b/reValuate/users/migrations/__pycache__/0002_auto_20210220_2131.cpython-36.pyc index 37e812013869c36eedadae658ea0b5939e96d4b1..20455094cebdcdf50cacb8c705276419d8adc9b3 100644 GIT binary patch delta 15 WcmbQnGL41Jn3tE!r)?vf022TkpaU%c delta 15 WcmbQnGL41Jn3tEUzh)zw022Tm00U+K diff --git a/reValuate/users/migrations/__pycache__/0003_auto_20210220_2142.cpython-36.pyc b/reValuate/users/migrations/__pycache__/0003_auto_20210220_2142.cpython-36.pyc index c587c758e7adfe7e006b7da7440edcde071e49c3..3d2f9fcbc4cc8bf9f268a1ab78087690df9eb3eb 100644 GIT binary patch delta 15 WcmX@ha+Zb7n3tE!r)?vfI}-pR5(Clz delta 15 WcmX@ha+Zb7n3tEUzh)zwI}-pSas&$i diff --git a/reValuate/users/migrations/__pycache__/0004_auto_20210220_2143.cpython-36.pyc b/reValuate/users/migrations/__pycache__/0004_auto_20210220_2143.cpython-36.pyc index 8a5ce823ca862df9ad3861d7a137f04e4a6a3e08..cd3f6ee20b43657d2df60871042af3762e565c00 100644 GIT binary patch delta 15 WcmbQmHj9nTn3tE!r)?vf2r~d2O#?mv delta 15 WcmbQmHj9nTn3tEUzh)zw2r~d3tpj%e diff --git a/reValuate/users/migrations/__pycache__/__init__.cpython-36.pyc b/reValuate/users/migrations/__pycache__/__init__.cpython-36.pyc index e2312c9855fc767f3be98fa6b640439ff7712e3e..29f77ed5dd616ad69b9270d89531d2f42d9ca9e7 100644 GIT binary patch delta 14 VcmbQqIFpghn3tE!r)?tJWB?eP1C9Uy delta 14 VcmbQqIFpghn3tEUzh)xaWB?h%1IGXW diff --git a/reValuate/website/__pycache__/settings.cpython-36.pyc b/reValuate/website/__pycache__/settings.cpython-36.pyc index 058b8cfe16a8a0019a967ff34729428200bb9629..57c946f73a2519d8871758b8627141f6c58eb37f 100644 GIT binary patch delta 15 WcmdlevQdQ1n3tE!r)?vfHWvUOas#FS delta 15 WcmdlevQdQ1n3tEUzh)zwHWvUP(gWWB diff --git a/reValuate/website/__pycache__/urls.cpython-36.pyc b/reValuate/website/__pycache__/urls.cpython-36.pyc index 304d845a9f3685c53556404f0b3f1e1083b7dd74..f049c1fdcbfe9fde0cb06d11584428d1cbe9da58 100644 GIT binary patch delta 15 WcmaFC`+}Fvn3tE!r)?wKBQ^jhDg?Oz delta 15 WcmaFC`+}Fvn3tEUzh)!bBQ^jiiUjfi diff --git a/reValuate/website/__pycache__/wsgi.cpython-36.pyc b/reValuate/website/__pycache__/wsgi.cpython-36.pyc index 3ba0f1e38191962b614879ad65f12c37b5172682..d175086e57abebc7040c73117ef394f662af66c7 100644 GIT binary patch delta 15 WcmZ3?vY3U