]> dev.renevier.net Git - syj.git/blob - application/views/scripts/idx/index.phtml
allow anonymous routes creation
[syj.git] / application / views / scripts / idx / index.phtml
1     <noscript>
2         <style type="text/css">
3             #map, #message, #data_controls, #login_controls, #user_area, #login_area, #newpwd_area {
4                 display: none;
5             }
6         </style>
7
8         <p><?php echo $this->translate('SYJ needs javascript. Please activate scripts in your browser.');?></p>
9     </noscript>
10
11     <div id="map"></div>
12
13     <div id="message" class="message info">
14     <?php if (!$this->path and !$this->loggedUser) {?>
15     <?php echo $this->translate('Welcome on Syj.')?>
16     <br/>
17     <?php echo $this->translate('To create a journey, just click on the map to add points to your route. You can zoom and move map with controls upper left.')?>
18     <br/>
19     <?php echo $this->translate('When you have finished a path, press "save", button.')?>
20     <?php }?>
21     </div>
22
23     <div id="data_controls">
24     <input id="edit-btn" name="edit-btn" type="button" value="<?php echo $this->translate('edit')?>">
25
26     <?php
27         print $this->geomform;
28     ?>
29
30     </div>
31
32     <div id="login_controls">
33         <div>
34             <?php
35                 echo $this->anchor('login', $this->translate('login'), array('id' => 'login_control_anchor', 'class' => 'login-anchor'));
36                 $anchortext = sprintf("%s<img id=\"account-info-bullet\" src=\"icons/bullet_arrow_right.png\"><span id=\"account-info\"><br>%s</span>",
37                                       $this->translate('create an account'),
38                                       $this->translate('Whith an account, you can manage and modify your routes'));
39                 echo $this->anchor('', $anchortext, array('id' => 'user_control_anchor', 'class' => 'login-anchor'), false);
40             ?>
41         </div>
42         <div>
43             <?php echo $this->logoutLink(); ?>
44         </div>
45     </div>
46
47     <div id="newpwd_area" class="modal">
48         <div id="newpwd_message" class="message"></div>
49         <?php
50             print $this->newpwdform;
51         ?>
52     </div>
53
54     <div id="user_area" class="modal">
55         <div id="user_message" class="message"></div>
56         <?php
57             print $this->userform;
58         ?>
59     </div>
60
61       <div id="login_area" class="modal">
62          <div id="login_message" class="message"></div>
63
64       <?php
65         print $this->loginform;
66       ?>
67
68       <p id="login_area_create"><a id="login_area_create_anchor" href=""><?php echo $this->translate('create an account')?></a></p>
69
70       </div>
71
72       <div id="termsofusearea" class="modal">
73         <iframe id="termsofuseiframe" width="100%" height="100%" frameborder="0"></iframe>
74       </div>
75
76 <?php echo $this->localeSwitcher(); ?>