You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
1.9 KiB
72 lines
1.9 KiB
<!--
|
|
Jordan Latimer
|
|
Alex Miller
|
|
|
|
Adding a Flag for Admin
|
|
-->
|
|
|
|
<html>
|
|
<head>
|
|
<title> Add Flag</title>
|
|
</head>
|
|
<body>
|
|
<h1> Add Flag </h1>
|
|
|
|
<!-- form for adding the flag -->
|
|
<form id="FlagInputs">
|
|
<label> Name: </label>
|
|
<input id="Name" type="text" align="middle" required>
|
|
<br><br>
|
|
<label> Description: </label>
|
|
<input id="Description" required>
|
|
<br><br>
|
|
|
|
<input type="radio" id="hint1" name="hintCount" value="1">
|
|
<label for="hint1">1 Hint</label>
|
|
<br>
|
|
|
|
<input type="radio" id="hint2" name="hintCount" value="2">
|
|
<label for="hint2">2 Hints</label>
|
|
<br>
|
|
|
|
<input type="radio" id="hint3" name="hintCount" value="3">
|
|
<label for="hint3">3 Hints</label>
|
|
<br><br>
|
|
|
|
<div id = "hint1Text">
|
|
<label for="Hint1">Hint 1: </label>
|
|
<input id="Hint1" type="text"><br><br>
|
|
</div>
|
|
|
|
<div id = "hint2Text">
|
|
<label for="Hint2">Hint 2: </label>
|
|
<input id="Hint2" type="text"><br><br>
|
|
</div>
|
|
|
|
<div id = "hint3Text">
|
|
<label for="Hint3">Hint 3: </label>
|
|
<input id="Hint3" type="text"><br><br>
|
|
</div>
|
|
|
|
<!-- image of the flag to create container -->
|
|
<label> Image: </label>
|
|
<select id="Images">
|
|
<option> ubuntu </option>
|
|
</select>
|
|
<br><br>
|
|
|
|
<!-- path to place the flag into -->
|
|
<label> Path To File </label>
|
|
<input id="Path" type="text">
|
|
|
|
<br>
|
|
<br>
|
|
<br>
|
|
|
|
<!-- submit button just closes the window for now -->
|
|
<div id="Submit">
|
|
<button id="flagName" type="submit" (click)="AddFlag()">Add Flag</button>
|
|
</div>
|
|
</form>
|
|
</body>
|
|
</html> |