This commit is contained in:
copyrighttxt
2026-07-06 13:28:00 -04:00
commit 05211f73ef
441 changed files with 94128 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
from flask import Blueprint, render_template, request, redirect, url_for, flash, make_response, jsonify
ClientPages = Blueprint('clientpages', __name__, template_folder="pages")
@ClientPages.route("/UploadMedia/PostImage.aspx", methods=["GET"])
def UploadMediaPostImage():
seostr = request.args.get("seostr")
filename = request.args.get("filename")
if seostr is None or filename is None:
return "Invalid request"
return render_template("clientpages/screenshot.html", seostr=seostr, filename=filename)
+17
View File
@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Screenshot</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ" crossorigin="anonymous">
</head>
<body>
<h2 class="fw-normal">Vortexi Screenshot</h2>
<p>Hey, you just took a screenshot in Vortexi! You could:</p>
<ul>
<li>Go to <a href="#" onclick="window.external.OpenPicFolder()">My Pictures</a> folder to check it out!</li>
<li>Paste it to your favorite painting software</li>
</ul>
<hr class="divider-bottom">
<a href="#" onclick="window.external.PostImage(false, 0); window.close();">Not interested, don't bother me again</a>
</body>
</html>