@@ -16,12 +16,12 @@ use \CarlBennett\MVC\Libraries\Common; ?>
16
16
</div>
17
17
</div><div class="col-lg-3">
18
18
<div class="form-group">
19
- <label class="font-weight-bold" for="packet_id">Id:</label>
19
+ <label class="font-weight-bold" for="packet_id">Id: <span class="small text-muted">(supports prefixes like &h, 0x, etc.)</span> </label>
20
20
<input class="bg-dark border border-primary form-control text-light" type="text" name="packet_id" id="packet_id" placeholder="Enter the message id here" tabindex="1" required autofocus="autofocus" value="<?= filter_var ($ form_fields ['packet_id ' ] ?? null , FILTER_SANITIZE_FULL_SPECIAL_CHARS )?> "/>
21
21
</div>
22
22
</div><div class="col-lg-4">
23
23
<div class="form-group">
24
- <label class="font-weight-bold" for="name">Name:</label>
24
+ <label class="font-weight-bold" for="name">Name: <span class="small text-muted">(e.g. SID_NULL)</span> </label>
25
25
<input class="bg-dark border border-primary form-control text-light" type="text" name="name" id="name" placeholder="Enter the message name here" tabindex="2" required value="<?= $ form_fields ['name ' ] ?? '' ?> "/>
26
26
</div>
27
27
</div><div class="col-lg-2">
@@ -34,11 +34,11 @@ use \CarlBennett\MVC\Libraries\Common; ?>
34
34
</div>
35
35
</div>
36
36
<div class="form-group">
37
- <label class="font-weight-bold" for="format">Format:</label>
37
+ <label class="font-weight-bold" for="format">Format: <span class="small text-muted">(see <a rel="external" href="https://bnetdocs.org/document/19/notational-convention-sizes-types">Notational Convention</a> for help or <code>[blank]</code> for none)</span> </label>
38
38
<textarea class="bg-dark border border-primary form-control language-objectivec text-light text-monospace" style="height:120px;" name="format" id="format" placeholder="Enter the message format here" tabindex="3" required><?= filter_var ($ form_fields ['format ' ] ?? null , FILTER_SANITIZE_FULL_SPECIAL_CHARS )?> </textarea>
39
39
</div>
40
40
<div class="form-group">
41
- <label class="font-weight-bold">Used by:</label>
41
+ <label class="font-weight-bold">Used by: <span class="small text-muted">(products that currently use or have used this packet)</span> </label>
42
42
<table class="table table-borderless table-sm">
43
43
<thead></thead><tbody>
44
44
<? $ p_ubound = count ($ form_products );
@@ -55,7 +55,7 @@ use \CarlBennett\MVC\Libraries\Common; ?>
55
55
</table>
56
56
</div>
57
57
<div class="form-group">
58
- <label class="font-weight-bold" for="remarks">Remarks:</label>
58
+ <label class="font-weight-bold" for="remarks">Remarks: <span class="small text-muted">(a description of what, when, where, and why this packet is used, and any related info)</span> </label>
59
59
<span class="float-right">
60
60
<div class="custom-control custom-switch">
61
61
<input class="custom-control-input" type="checkbox" name="markdown" id="markdown" tabindex="5"
0 commit comments