mirror of
https://github.com/piskelapp/piskel.git
synced 2023-08-10 21:12:52 +03:00
51 lines
2.1 KiB
HTML
51 lines
2.1 KiB
HTML
<div class="settings-section">
|
|
<div class="settings-title">
|
|
Open Piskel Project
|
|
</div>
|
|
<div class="settings-item">
|
|
<form action="" method="POST" name="open-piskel-form">
|
|
<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">Open...</button>
|
|
<span class="file-input-open-piskel-status"></span>
|
|
<input style="display:none"
|
|
type="file" name="open-piskel-input"
|
|
value="file" accept=".piskel"/>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
<div class="settings-title">
|
|
Import From Picture
|
|
</div>
|
|
<div class="settings-item">
|
|
<form action="" method="POST" name="import-form">
|
|
<div style="margin-top:5px;margin-bottom:5px;">Supports : PNG, JPG, BMP, Animated GIF ...</div>
|
|
<div class="import-section">
|
|
<button type="button" class="button button-primary file-input-button">Browse...</button>
|
|
<span class="file-input-status"></span>
|
|
<input style="display:none"
|
|
type="file" name="file-upload-input"
|
|
value="file" accept="image/*"/>
|
|
</div>
|
|
|
|
<div class="import-options">
|
|
<div class="import-section">
|
|
<span class="import-section-title import-section-title-small" style="vertical-align:top">Info :</span>
|
|
<div class="import-section-preview"></div>
|
|
</div>
|
|
<div class="import-section">
|
|
<span class="import-section-title import-section-title-small">Size :</span>
|
|
<input type="text" class="textfield import-size-field" name="resize-width"/>x
|
|
<input type="text" class="textfield import-size-field" name="resize-height"/>
|
|
</div>
|
|
<div class="import-section">
|
|
<span class="import-section-title">Smooth resize :</span>
|
|
<input type="checkbox" checked="checked" name="smooth-resize-checkbox" value="1"/>
|
|
</div>
|
|
<input type="submit" name="import-submit" class="button button-primary import-button" value="Import" />
|
|
</div>
|
|
|
|
</form>
|
|
</div>
|
|
</div> |