mirror of
https://github.com/piskelapp/piskel.git
synced 2023-08-10 21:12:52 +03:00
55 lines
2.2 KiB
HTML
55 lines
2.2 KiB
HTML
|
<div class="settings-section">
|
||
|
<div class="settings-title">
|
||
|
Load from Browser
|
||
|
</div>
|
||
|
<div class="settings-item">
|
||
|
<span>Load a <span style="font-weight:bold;color:white">local piskel</span> saved in this Browser</span>
|
||
|
<div class="import-section">
|
||
|
<button type="button" class="button button-primary browse-local-button">Browse local saves</button>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="settings-title">
|
||
|
Load .piskel file
|
||
|
</div>
|
||
|
<div class="settings-item">
|
||
|
<span>Load a <span style="font-weight:bold;color:white">.piskel</span> file from your computer</span>
|
||
|
|
||
|
<div class="import-section">
|
||
|
<button type="button" class="button button-primary open-piskel-button">Browse .piskel files</button>
|
||
|
<span class="file-input-open-piskel-status"></span>
|
||
|
<input style="display:none"
|
||
|
type="file" name="open-piskel-input"
|
||
|
value="file" accept=".piskel"/>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="settings-title">
|
||
|
Import From Picture
|
||
|
</div>
|
||
|
<div class="settings-item">
|
||
|
<div style="margin-top:5px;margin-bottom:5px;">Supports : <span style="font-weight:bold;color:white">PNG, JPG, BMP, Animated GIF ...</span></div>
|
||
|
<div class="import-section">
|
||
|
<button type="button" class="button button-primary file-input-button">Browse images</button>
|
||
|
<input style="display:none"
|
||
|
type="file" name="file-upload-input"
|
||
|
value="file" accept="image/*"/>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="settings-title">
|
||
|
Recover recent sessions
|
||
|
</div>
|
||
|
<div class="settings-item previous-session">
|
||
|
<!-- <span>Load a <span style="font-weight:bold;color:white">backup</span> from a recent session</span>
|
||
|
<div class="import-section">
|
||
|
<button type="button" class="button button-primary load-recent-button">Browse recent sessions</button>
|
||
|
</div> -->
|
||
|
</div>
|
||
|
|
||
|
<script type="text/template" id="previous-session-info-template">
|
||
|
<div>
|
||
|
Restore a backup of <span style="color:gold">{{name}}</span>, saved at <span style="color:white">{{date}}</span> ?
|
||
|
<div style="margin-top:10px;">
|
||
|
<button type="button" class="button button-primary restore-session-button">Restore</button>
|
||
|
</div>
|
||
|
</div>
|
||
|
</script>
|
||
|
</div>
|