Welcome to TouchPoint Widget

The Welcome to TouchPoint widget simply provides helpful links to TouchPoint resources for webinars, documentation, and training.

The widget utilizes only an HTML file as shown below. (No SQL or Python script is needed.) Since the information in this widget is the same for all users, Caching should be set to all users.

HTML Code

Below is the HTML code for the Welcome to TouchPoint widget. As supplied by TouchPoint, the file name is WidgetWelcomeHTML.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
<div class="box" style="background-color:white;">
    <div class="center">
        <h2 style="color:#003f72;text-align:center;">Welcome to TouchPoint!</h2>
        <div style="margin-bottom: 15px;">
            <div class="col-xs-4" style="text-align:center;display: flex;flex-direction: column;">
                <i class="fa fa-video-camera fa-2x" style="margin-bottom: 8px;"></i>
                <a href="https://www.touchpointsoftware.com/blog/#on-demand-webinars">Webinars</a>
            </div>
            <div class="col-xs-4" style="text-align:center;display: flex;flex-direction: column;">
                <i class="fa fa-book fa-2x" style="margin-bottom: 8px;"></i>
                <a href="https://docs.touchpointsoftware.com/">Documentation</a>
            </div>
            <div class="col-xs-4" style="text-align:center;display: flex;flex-direction: column;">
                <i class="fa fa-question-circle fa-2x" style="margin-bottom: 8px;"></i>
                <a href="https://www.touchpointsoftware.com/training/">Training</a>
            </div>
        </div>
    </div>
</div>


Latest Update

04/30/2020

Added this article.