23 lines
807 B
HTML
23 lines
807 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}播放列表设置{% endblock %}
|
|
|
|
{% block content %}
|
|
<h2>📂 播放列表设置</h2>
|
|
<form method="post" action="/playlist">
|
|
<div class="mb-3">
|
|
<label for="address" class="form-label">播放列表地址</label>
|
|
<input type="text" class="form-control" id="address" name="address">
|
|
</div>
|
|
<div class="mb-3">
|
|
<label for="interval" class="form-label">同步时间间隔</label>
|
|
<select class="form-select" id="interval" name="interval">
|
|
<option value="5">每 5 分钟</option>
|
|
<option value="10">每 10 分钟</option>
|
|
<option value="30">每 30 分钟</option>
|
|
</select>
|
|
</div>
|
|
<button type="submit" class="btn btn-success">保存设置</button>
|
|
</form>
|
|
|
|
{% endblock %} |