0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-06 22:40:14 -05:00

Fix debug tools layout

This commit is contained in:
John O'Nolan 2013-09-16 18:53:09 +01:00
parent e3bc0b3151
commit 0b89335339

View file

@ -17,30 +17,30 @@
<section class="content"> <section class="content">
<form id="settings-export"> <form id="settings-export">
<fieldset> <fieldset>
<label> <div class="form-group">
<b>Export</b> <label>Export</label>
<a href="/ghost/debug/db/export/" class="button-save">Export</a> <a href="/ghost/debug/db/export/" class="button-save">Export</a>
<p>Export the blog settings and data.</p> <p>Export the blog settings and data.</p>
</label> </div>
</fieldset> </fieldset>
</form> </form>
<form id="settings-import" method="post" action="/ghost/debug/db/import/" enctype="multipart/form-data"> <form id="settings-import" method="post" action="/ghost/debug/db/import/" enctype="multipart/form-data">
<fieldset> <fieldset>
<label> <div class="form-group">
<b>Import</b> <label>Import</label>
<input type="file" class="button-add" name="importfile"></input> <input type="file" class="button-add" name="importfile"></input>
<input type="submit" class="button-save" value="Import"></input> <input type="submit" class="button-save" value="Import"></input>
<p>Import from another Ghost installation. If you import a user, this will replace the current user & log you out.</p> <p>Import from another Ghost installation. If you import a user, this will replace the current user & log you out.</p>
</label> </div>
</fieldset> </fieldset>
</form> </form>
<form id="settings-resetdb"> <form id="settings-resetdb">
<fieldset> <fieldset>
<label> <div class="form-group">
<b>Reset Database</b> <label>Reset Database</label>
<a href="/ghost/debug/db/reset/" class="button-delete">Reset</a> <a href="/ghost/debug/db/reset/" class="button-delete">Reset</a>
<p>Delete the entire database so you can start again with empty tables</p> <p>Delete the entire database so you can start again with empty tables</p>
</label> </div>
</fieldset> </fieldset>
</form> </form>
</section> </section>