]> dev.renevier.net Git - syj.git/blob - application/views/scripts/idx/index.phtml
reindent idx/index.phtml
[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     <div id="data_controls_btns">
25 <?php if (isset($this->path)) { ?>
26     <input id="clone-btn" name="clone-btn" type="button" value="<?php echo $this->translate('duplicate');?>">
27     <br>
28     <input id="edit-btn" name="edit-btn" type="button" value="<?php echo $this->translate('edit');?>">
29 <?php } else {?>
30     <input id="create-btn" name="create-btn" type="button" value="<?php echo $this->translate('start a route');?>">
31 <?php } ?>
32     </div>
33
34 <?php
35     print $this->geomform;
36 ?>
37
38 </div>
39
40 <div id="login_controls">
41     <div>
42         <?php
43             echo $this->anchor('login', $this->translate('login'), array('id' => 'login_control_anchor', 'class' => 'login-anchor'));
44             $anchortext = sprintf("%s<img id=\"account-info-bullet\" src=\"icons/bullet_arrow_right.png\"><span id=\"account-info\"><br>%s</span>",
45                                   $this->translate('create an account'),
46                                   $this->translate('Whith an account, you can manage and modify your routes'));
47             echo $this->anchor('', $anchortext, array('id' => 'user_control_anchor', 'class' => 'login-anchor'), false);
48         ?>
49     </div>
50     <div>
51         <?php echo $this->logoutLink(); ?>
52     </div>
53 </div>
54
55 <div id="newpwd_area" class="modal">
56     <div id="newpwd_message" class="message"></div>
57     <?php
58         print $this->newpwdform;
59     ?>
60 </div>
61
62 <div id="user_area" class="modal">
63     <div id="user_message" class="message"></div>
64     <?php
65         print $this->userform;
66     ?>
67 </div>
68
69   <div id="login_area" class="modal">
70      <div id="login_message" class="message"></div>
71
72   <?php
73     print $this->loginform;
74   ?>
75
76   <p id="login_area_create"><a id="login_area_create_anchor" href=""><?php echo $this->translate('create an account')?></a></p>
77
78   </div>
79
80   <div id="termsofusearea" class="modal">
81     <iframe id="termsofuseiframe" width="100%" height="100%" frameborder="0"></iframe>
82   </div>
83
84 <?php echo $this->localeSwitcher(); ?>