This repository has been archived by the owner on Jan 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
91 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
<div class="grid_12"> | ||
<h3 style="margin-top: 50px;">General</h3> | ||
</div> | ||
<div class="grid_4"> | ||
<p>SWF</p> | ||
<input type="text" name="swf"> | ||
</div> | ||
<div class="grid_4"> | ||
<p>Name</p> | ||
<input type="text" name="name"> | ||
</div> | ||
<div class="grid_4"> | ||
<p>Description</p> | ||
<input type="text" name="description"> | ||
</div> | ||
|
||
|
||
<div class="grid_12"> | ||
<h3 style="margin-top: 50px;">Misc</h3> | ||
</div> | ||
<div class="grid_4"> | ||
<p>Width</p> | ||
<input type="number" name="width" min="0" value="0"> | ||
</div> | ||
<div class="grid_4"> | ||
<p>Length</p> | ||
<input type="number" name="length" min="0" value="0"> | ||
</div> | ||
<div class="grid_4"> | ||
<p>Height</p> | ||
<input type="number" name="height" min="0" value="0"> | ||
</div> | ||
<div class="grid_4"> | ||
<p>Type</p> | ||
<select name="type"> | ||
<option value="s" selected>s</option> | ||
<option value="i">i</option> | ||
</select> | ||
</div> | ||
|
||
|
||
<div class="grid_12"> | ||
<h3 style="margin-top: 50px;">Ids</h3> | ||
</div> | ||
<div class="grid_4"> | ||
<p>Page Id</p> | ||
<input type="number" name="pageId" min="0" value="0"> | ||
</div> | ||
<div class="grid_4"> | ||
<p>Furni Id</p> | ||
<input type="number" name="id" min="0" value="0"> | ||
</div> | ||
<div class="grid_4"> | ||
<p>Revision</p> | ||
<input type="number" name="revision" min="0" value="0"> | ||
</div> | ||
|
||
|
||
<div class="grid_12"> | ||
<h3 style="margin-top: 50px;">Price</h3> | ||
</div> | ||
<div class="grid_4"> | ||
<p>Credits</p> | ||
<input type="number" name="credits" min="0" value="0"> | ||
</div> | ||
<div class="grid_4"> | ||
<p>Points</p> | ||
<input type="number" name="points" min="0" value="0"> | ||
</div> | ||
<div class="grid_4"> | ||
<p>Amount</p> | ||
<input type="number" name="amount" min="1" value="1"> | ||
</div> | ||
|
||
|
||
<div class="grid_12"> | ||
<h3 style="margin-top: 50px;">Other</h3> | ||
</div> | ||
<div class="grid_4"> | ||
<label> | ||
<input type="checkbox" name="isSeatable"> | ||
<span class="icon"><i class="fa fa-check"></i></span>Is seatable | ||
</label> | ||
<label style="margin-left: 20px;"> | ||
<input type="checkbox" name="isWalkable"> | ||
<span class="icon"><i class="fa fa-check"></i></span>Is walkable | ||
</label> | ||
</div> |