--- /dev/null
+<h4>Single entry</h4>
+<!-- Dataset name. -->
+<div class="my-3">
+ <label class="form-label" for="data_name">Dataset name</label>
+ <input name="data_name" class="form-control" type="text">
+ <small id="data_name_warn" class="form-text text-primary shiny-text-output"></small>
+</div>
+<!-- Case counts. -->
+<div class="mb-3">
+ <label class="form-label" for="data_counts">
+ Case counts
+ <sup data-bs-toggle="tooltip" data-bs-placement="right"
+ data-bs-title="Enter as a comma-separated list of non-negative integers (example: 0,1,1,2,3,5,8,13).">
+ [?]
+ </sup>
+ </label>
+ <input name="data_counts" class="form-control" type="text">
+ <small id="data_counts_warn" class="form-text text-primary shiny-text-output"></small>
+</div>
+<!-- Time units. -->
+<div class="mb-3">
+ <label class="form-label" for="data_units">Time units</label>
+ <div class="shiny-input-radiogroup" id="data_units">
+ <div class="form-check form-check-inline">
+ <label class="form-check-label">
+ <input type="radio" class="form-check-input me-2" name="data_units" value="Days">Days
+ </label>
+ </div>
+ <div class="form-check form-check-inline">
+ <label class="form-check-label">
+ <input type="radio" class="form-check-input me-2" name="data_units" value="Weeks" checked>Weeks
+ </label>
+ </div>
+ </div>
+</div>
+<!-- Submit data. -->
+<button id="data_single" type="button" class="btn btn-outline-primary btn-sm action-button">
+ <span class="glyphicon glyphicon-plus"></span> Add
+</button>