45 lines
1.5 KiB
HTML
45 lines
1.5 KiB
HTML
{{ define "title"}}{{ t "page.import.title" }}{{ end }}
|
|
|
|
{{ define "content"}}
|
|
<section class="page-header">
|
|
<h1>{{ t "page.import.title" }}</h1>
|
|
<ul>
|
|
<li>
|
|
<a href="{{ route "feeds" }}">{{ t "menu.feeds" }}</a>
|
|
</li>
|
|
<li>
|
|
<a href="{{ route "addSubscription" }}">{{ t "menu.add_feed" }}</a>
|
|
</li>
|
|
<li>
|
|
<a href="{{ route "export" }}">{{ t "menu.export" }}</a>
|
|
</li>
|
|
</ul>
|
|
</section>
|
|
|
|
<form action="{{ route "uploadOPML" }}" method="post" enctype="multipart/form-data">
|
|
<input type="hidden" name="csrf" value="{{ .csrf }}">
|
|
|
|
{{ if .errorMessage }}
|
|
<div class="alert alert-error">{{ t .errorMessage }}</div>
|
|
{{ end }}
|
|
|
|
<label for="form-file">{{ t "form.import.label.file" }}</label>
|
|
<input type="file" name="file" id="form-file">
|
|
|
|
<div class="buttons">
|
|
<button type="submit" class="button button-primary" data-label-loading="{{ t "form.submit.saving" }}">{{ t "action.import" }}</button>
|
|
</div>
|
|
</form>
|
|
|
|
<form action="{{ route "fetchOPML" }}" method="post" enctype="multipart/form-data">
|
|
<input type="hidden" name="csrf" value="{{ .csrf }}">
|
|
|
|
<label for="form-url">{{ t "form.import.label.url" }}</label>
|
|
<input type="url" name="url" id="form-url">
|
|
|
|
<div class="buttons">
|
|
<button type="submit" class="button button-primary" data-label-loading="{{ t "form.submit.saving" }}">{{ t "action.import" }}</button>
|
|
</div>
|
|
</form>
|
|
|
|
{{ end }}
|