Changesets can be listed by changeset number.
The Git repository is here.
- Revision:
- 193
- Log:
First stage commit of Typo 4.1, modified for the ROOL site.
Includes all local modifications but a final pass needs to be
made to delete any files left over from earlier Typo versions
that shouldn't be here anymore. See the 'tags' section of the
repository for a clean Typo 4.1 tree.Note that symlinks to shared files in the RISC OS Open theme
directory have been deliberately included this time around; I
decided that on balance it was better to leave them in as
placeholders, since unlike symlinks in app/views/shared, the
Typo theme structure is not a standard Rails concept.
- Author:
- rool
- Date:
- Wed Apr 04 18:51:02 +0100 2007
- Size:
- 910 Bytes
1 | <% form_tag :action=> "signup" do %> |
2 | |
3 | <%= error_messages_for 'user' %><br/> |
4 | |
5 | <div title="Account signup" id="loginform"> |
6 | <h3><%= _('Signup') %></h3> |
7 | <div class="form"> |
8 | <label for="user_login"><%= _("Desired login") %>:</label><br/> |
9 | <%= text_field "user", "login", :size => 20 %><br/> |
10 | |
11 | <label for="user_login"><%= _("Display name")%>:</label><br/> |
12 | <%= text_field "user", "name", :size => 30 %><br/> |
13 | |
14 | <label for="user_login"><%= _("Email")%>:</label><br/> |
15 | <%= text_field "user", "email", :size => 30 %><br/> |
16 | |
17 | <label for="user_password"><%= _("Choose password")%>:</label><br/> |
18 | <%= password_field "user", "password", :size => 30 %><br/> |
19 | <label for="user_password_confirmation"><%= _("Confirm password")%>:</label><br/> |
20 | <%= password_field "user", "password_confirmation", :size => 30 %><br/> |
21 | <input type="submit" value="<%= _('Signup') %>" class="primary" /> |
22 | </div> |
23 | </div> |
24 | |
25 | <% end %> |
26 |