File: clone.php

package info (click to toggle)
boinc 5.4.11-4%2Betch1
  • links: PTS
  • area: main
  • in suites: etch
  • size: 21,440 kB
  • ctags: 16,986
  • sloc: cpp: 70,682; ansic: 45,747; php: 35,513; xml: 10,487; sh: 9,324; python: 4,291; makefile: 1,958; asm: 1,258; perl: 914; sql: 395; csh: 126; pascal: 124
file content (22 lines) | stat: -rw-r--r-- 795 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
    require_once("../inc/util.inc");

    page_head("Team-based account creation");
    echo "
        <p>
        A <b>Create team account</b> URL is shown on every team page.
        Accounts created through this URL
        <ul>
        <li> will belong to that team and
        <li> will have the same ".PROJECT." preferences as its founder.
        </ul>
        For example, you can create a team for your school or company,
        and set up your preferences to show a team logo
        in the screensaver graphics.
        Then get your friends and coworkers to register for
        ".PROJECT." through the URL shown in the team page,
        and they will automatically belong to your team
        and will have the logo in their screensaver graphics.
    ";
    page_tail();
?>