12 lines
382 B
PHP
12 lines
382 B
PHP
|
<div class="page-header">
|
||
|
<h2>OPML Import</h2>
|
||
|
<?php include __DIR__.'/feed_menu.php' ?>
|
||
|
</div>
|
||
|
|
||
|
<form method="post" action="?action=import" enctype="multipart/form-data">
|
||
|
<label for="file">OPML file</label>
|
||
|
<input type="file" name="file" required/>
|
||
|
<div class="form-actions">
|
||
|
<button type="submit" class="btn btn-blue">Import</button>
|
||
|
</div>
|
||
|
</form>
|