From 3beb3b9355d51b350309f0e5ba7cca8e5dca6110 Mon Sep 17 00:00:00 2001 From: vbhv007 Date: Mon, 27 May 2019 11:31:37 +0530 Subject: [PATCH] 1st release --- dashboard/dashboard.py | 25 ------------ dashboard/templates/index.html | 71 ---------------------------------- dashboard/templates/main.css | 20 ---------- 3 files changed, 116 deletions(-) delete mode 100644 dashboard/dashboard.py delete mode 100644 dashboard/templates/index.html delete mode 100644 dashboard/templates/main.css diff --git a/dashboard/dashboard.py b/dashboard/dashboard.py deleted file mode 100644 index 283a754..0000000 --- a/dashboard/dashboard.py +++ /dev/null @@ -1,25 +0,0 @@ -from flask import Flask,render_template, url_for,redirect -import random, string -app = Flask(__name__,static_url_path='') - - - - -@app.route('/') -def index_unnamed(): - url = ''.join(random.choices(string.ascii_letters + string.digits, k=6)) - return redirect(url) - - - - -@app.route('/') -def index_named(urlString): - return render_template('index.html') - - - - - -if __name__ == "__main__": - app.run(debug = True) \ No newline at end of file diff --git a/dashboard/templates/index.html b/dashboard/templates/index.html deleted file mode 100644 index 67917fe..0000000 --- a/dashboard/templates/index.html +++ /dev/null @@ -1,71 +0,0 @@ - - - - ClipBoard - - - - - - - - - - - - - - - - - - - -
-
- ClipBoard -
- -
-
-
- -
- -
- -
-
-
- - -
- - - - - - - diff --git a/dashboard/templates/main.css b/dashboard/templates/main.css deleted file mode 100644 index d4a8b02..0000000 --- a/dashboard/templates/main.css +++ /dev/null @@ -1,20 +0,0 @@ -*{ - - padding: 10px; - /*border:1px solid;*/ -} -.title{ - font-size:5vh; - height:10%; -} -.note_container{ - height:90%; -} -.note_title{ - height:10%; - /*margin-bottom: 2px;*/ -} -.note_main{ - height:90%; - /*margin-top: 2px;*/ -} \ No newline at end of file