37 lines
1.1 KiB
HTML
Raw Normal View History

2025-10-02 21:17:36 +02:00
{% extends "base.html" %}
{% block title %}Create Feed - RSS Feed Manager{% endblock %}
{% block content %}
<h1 style="margin-bottom: 20px; font-size: 32px; font-weight: normal;">Create New Feed</h1>
<div style="max-width: 600px; margin: 40px auto;">
<form method="post" action="/manage/create">
<div class="form-group">
<label for="name">Name</label>
<input type="text" id="name" name="name" required>
</div>
<div class="form-group">
<label for="url">URL</label>
<input type="text" id="url" name="url" required>
</div>
<div class="form-group">
<label for="type">Type</label>
<input type="text" id="type" name="type" required>
</div>
<div class="form-group">
<label for="category">Category</label>
<input type="text" id="category" name="category" required>
</div>
<div style="margin-top: 30px;">
<button type="submit" class="btn btn-primary">Create Feed</button>
<a href="/manage" class="btn">Cancel</a>
</div>
</form>
</div>
{% endblock %}