Connectivity Guide

Dell Networking W-ClearPass Guest 6.2 | User Guide Reference | 377
Chapter 10
Reference
This chapter includes the following sections:
l "Basic HTML Syntax" on page 377
l "Standard HTML Styles" on page 378
l "Smarty Template Syntax" on page 380
l "Date/Time Format Syntax" on page 395
l "Programmers Reference" on page 397
l "Field, Form, and View Reference" on page 403
l "LDAP Standard Attributes for User Class" on page 421
l "Regular Expressions" on page 422
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 35:
Standard HTML Tags