User's Manual

Dell Networking W-ClearPass Guest 6.4 | User Guide Reference | 477
Chapter 10
Reference
This chapter includes the following sections:
l "Basic HTML Syntax" on page 477
l "Standard HTML Styles" on page 478
l "Smarty Template Syntax" on page 480
l "Date/Time Format Syntax" on page 496
l "Programmer’s Reference" on page 498
l "Field, Form, and View Reference" on page 504
l "LDAP Standard Attributes for User Class" on page 525
l "Regular Expressions" on page 526
Basic HTML Syntax
Dell Networking W-ClearPass Guest allows different parts of the user interface to be customized using the
Hypertext Markup Language (HTML).
Most customization tasks only require basic HTML knowledge, which is covered in this section.
HTML is a markup language that consists primarily of tags that are enclosed inside angle brackets, for example,
<p>. Most tags are paired to indicate the start and end of the text being marked up; an end tag is formed by
including the tag inside the angle brackets with a forward slash, for example, </p>.
Use the following standard HTML tags in customization:
Item HTML Syntax
Basic Content
<h1>Main Heading</h1>
<h2>Subheading</h2>
<h3>Section heading</h3>
<p>Paragraph text</p>
<br>
<br /> – equivalent syntax (XHTML)
<ul>
<li>List item text</li>
</ul>
<ol>
<li>List item text</li>
</ol>
Table 112: Standard HTML Tags