Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
PepeOnGithub authored May 28, 2024
1 parent 71f50ff commit a1f7434
Showing 1 changed file with 9 additions and 13 deletions.
22 changes: 9 additions & 13 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</head>

<body>
<div class="container">
<div class="container" id="selection-container">
<div class="header">
<h1>Manifest Generator</h1>
<p>by MCT Productions</p>
Expand All @@ -27,27 +27,23 @@ <h2>Resources Pack</h2>
</div>

<div id="form-container" class="form-container" style="display: none;">
<button class="back-button" onclick="goBack()">&#x25C0; Back</button>
<h2 id="form-title">Resources Pack Generator</h2>
<form class="form-spacing">
<input type="hidden" id="packType" name="packType">
<label for="name">Name</label>
<label for="name">Pack name:</label>
<input type="text" id="name" name="name" required>

<label for="description">Description</label>
<textarea id="description" name="description" required></textarea>
<label for="description">Description:</label>
<input type="text" id="description" name="description" required>

<label for="version" style="display: inline-block;">Version</label>
<span class="info-icon" title="Hover for more information">&#9432;
<span class="info-text">Put the pack version it works on for ex: 1.0.0</span>
</span>
<label for="version">Version:</label>
<input type="text" id="version" name="version" required>

<label for="minimum_api_version" style="display: inline-block;">Minimum API Version</label>
<span class="info-icon" title="Hover for more information">&#9432;
<span class="info-text">Put the minimum mc version it works on for ex: 1.17.0</span>
</span>
<label for="minimum_api_version">Minimum API Version:</label>
<input type="text" id="minimum_api_version" name="minimum_api_version" required>

<label for="author">Author</label>
<label for="author">Author:</label>
<input type="text" id="author" name="author" required>

<input type="button" id="manifest-button" value="Generate manifest.json" onclick="generateManifest()">
Expand Down

0 comments on commit a1f7434

Please sign in to comment.