]> git.mxchange.org Git - friendica.git/blobdiff - mod/newmember.php
Move mod/dirfind to src/Module/DirFind
[friendica.git] / mod / newmember.php
index cd59cc780c23ccf7116cf90091ff49d3558b2d55..b1eda7a2d11518e9e85ee946da38bacd8dd38000 100644 (file)
@@ -8,13 +8,14 @@ use Friendica\Core\L10n;
 
 function newmember_content(App $a)
 {
-       $o = '<h1>' . L10n::t('Welcome to Friendica') . '</h1>';
+       $o = '<div class="generic-page-wrapper">';
+       $o .= '<h1>' . L10n::t('Welcome to Friendica') . '</h1>';
        $o .= '<h3>' . L10n::t('New Member Checklist') . '</h3>';
        $o .= '<div style="font-size: 120%;">';
        $o .= L10n::t('We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear.');
        $o .= '<h4>' . L10n::t('Getting Started') . '</h4>';
        $o .= '<ul>';
-       $o .= '<li> ' . '<a target="newmember" href="help/guide">' . L10n::t('Friendica Walk-Through') . '</a><br />' . L10n::t('On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join.') . '</li>' . EOL;
+       $o .= '<li> ' . '<a target="newmember" href="help/Quick-Start-guide">' . L10n::t('Friendica Walk-Through') . '</a><br />' . L10n::t('On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join.') . '</li>' . EOL;
        $o .= '</ul>';
        $o .= '<h4>' . L10n::t('Settings') . '</h4>';
        $o .= '<ul>';
@@ -54,6 +55,7 @@ function newmember_content(App $a)
        $o .= '<li>' . '<a target="newmember" href="help">' . L10n::t('Go to the Help Section') . '</a><br />' . L10n::t('Our <strong>help</strong> pages may be consulted for detail on other program features and resources.') . '</li>' . EOL;
        $o .= '</ul>';
        $o .= '</div>';
+       $o .= '</div>';
 
        return $o;
 }