/lenasys/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/lenasys/trunk

« back to all changes in this revision

Viewing changes to codeigniter/application/views/registrationInstructor.php

  • Committer: Gustav Hatvigsson
  • Date: 2013-05-30 11:59:17 UTC
  • mfrom: (85.1.27 lenasys)
  • Revision ID: gustav.hartvigsson@gmail.com-20130530115917-nq06e5l455nfqok5
Merged Ohlssons changes:
added function to get ssn and name for the registrationspages in the user model.
added the registrationpage for students.
edited the registration page for instructors
edited the css for both the registrationpages

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<div id="regWrapper">
2
 
        <div id="regHeader">
3
 
                <span id="regHeader">
4
 
                        Welcome to LenaSYS
5
 
                </span>
6
 
        </div>
7
 
        <div id="regformcontenttext">To complete your registration,</br>
8
 
                please enter your account information.</div>    
9
 
        <div id="regForm">
10
 
                <table>
11
 
                        <tr>
12
 
                                <td>Username:</td><td><?php $userName ?></td>
13
 
                        </tr>
14
 
                        <tr>
15
 
                                <td>Full Name:</td><td><input id="fullName" type="text" name="fullName" placeholder="--Full name--"></td>
16
 
                        </tr>
17
 
                        <tr>
18
 
                                <td>Social Security Number:</td><td><input id="ssn" type="text" name="ssn" placeholder="--YYMMDD-XXXX--"></td>
19
 
                        </tr>
20
 
                        <tr>
21
 
                                <td>New Password:</td><td id="grayText"><input id="newPassword" type="text" name="password" placeholder="--Password--"></td>
22
 
                        </tr>
23
 
                        <tr>
24
 
                                <td>Repeat Password:</td><td><input id="repeatPassword" type="text" name="repeatPassword" placeholder="--Repeat Password--"></td>
25
 
                        </tr>
26
 
                        <tr>
27
 
                                <td>Password Hint:</td><td><input id="pHint" type="text" name="hint" placeholder="--Password Hint--"></td>
28
 
                        </tr>   
29
 
                        <tr>
30
 
                                <td colspan="2"><div id="buttonposition"><input type="submit" value="Confirm"></div></td>
31
 
                        </tr>   
32
 
                </table>
33
 
        </div>
 
1
<div id="bigwrapper">
 
2
        <div id="regWrapper">
 
3
                <div id="regHeader">
 
4
                        <span id="regHeader">
 
5
                                Welcome to LenaSYS
 
6
                        </span>
 
7
                </div>
 
8
                <div id="regformcontenttext">
 
9
                        To complete your registration,</br>
 
10
                        please enter your account information.</div>    
 
11
                <div id="regForm">
 
12
                        <table>
 
13
                                <tr>
 
14
                                        <td>Username:</td><td><?php echo $userName; ?></td>
 
15
                                </tr>
 
16
                                <tr>
 
17
                                        <td>Full Name:</td><td><input id="fullName" type="text" name="fullName" placeholder="--Full name--"></td>
 
18
                                </tr>
 
19
                                <tr>
 
20
                                        <td>Social Security Number:</td><td><input id="ssn" type="text" name="ssn" placeholder="--YYMMDD-XXXX--"></td>
 
21
                                </tr>
 
22
                                <tr>
 
23
                                        <td>New Password:</td><td id="grayText"><input id="newPassword" type="text" name="password" placeholder="--Password--"></td>
 
24
                                </tr>
 
25
                                <tr>
 
26
                                        <td>Repeat Password:</td><td><input id="repeatPassword" type="text" name="repeatPassword" placeholder="--Repeat Password--"></td>
 
27
                                </tr>
 
28
                                <tr>
 
29
                                        <td>Password Hint:</td><td><input id="pHint" type="text" name="hint" placeholder="--Password Hint--"></td>
 
30
                                </tr>   
 
31
                                <tr>
 
32
                                        <td colspan="2"><div id="buttonposition"><input type="submit" value="Confirm" class="confirmbuttonlooks"></div></td>
 
33
                                </tr>   
 
34
                        </table>
 
35
                </div>
 
36
        </div>  
34
37
</div>  
35
 
        
36
38
 
37
39