aboutsummaryrefslogtreecommitdiffhomepage
path: root/backend/templates/settings.html
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-06-23 03:11:14 +0900
committernsfisis <nsfisis@gmail.com>2025-06-23 03:15:54 +0900
commite95b823f6554f5bad24be1c7f04b2adc763a9f92 (patch)
tree3cb3e220143cf51e4e60b26283a905393aa6ba94 /backend/templates/settings.html
parent27bfc8f1d9588322d85197e31b7346601cc680b3 (diff)
downloadfeedaka-e95b823f6554f5bad24be1c7f04b2adc763a9f92.tar.gz
feedaka-e95b823f6554f5bad24be1c7f04b2adc763a9f92.tar.zst
feedaka-e95b823f6554f5bad24be1c7f04b2adc763a9f92.zip
refactor: change directory structure
Diffstat (limited to 'backend/templates/settings.html')
-rw-r--r--backend/templates/settings.html22
1 files changed, 22 insertions, 0 deletions
diff --git a/backend/templates/settings.html b/backend/templates/settings.html
new file mode 100644
index 0000000..65efd8d
--- /dev/null
+++ b/backend/templates/settings.html
@@ -0,0 +1,22 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <link rel="stylesheet" href="{{.BasePath}}/static/style.css">
+ <link rel="icon" href="{{.BasePath}}/static/favicon.svg">
+ <title>Settings | feedaka</title>
+ </head>
+ <body class="bg-gray-100 text-gray-900 font-sans antialiased">
+ <div class="mx-auto mt-10 px-6">
+ <h1 class="text-4xl font-bold underline mb-8">Settings</h1>
+ <main>
+ <h2 class="text-2xl mb-3">URLs</h2>
+ <form method="POST" class="space-y-4">
+ <textarea name="urls" rows="10" cols="80" class="w-full p-2 border rounded resize-y">{{.URLs}}</textarea>
+ <input type="submit" value="Submit" class="py-2 px-4 bg-blue-600 text-white rounded hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-blue-500 focus:ring-opacity-50" />
+ </form>
+ </main>
+ </div>
+ </body>
+</html>