Changesets can be listed by changeset number.
The Git repository is here.
- Revision:
- 476
- Log:
Various fixes:
* Clear cookies on login
* Warn about cookie use before login
* HTTPS / other parameter improvements for own cookie
- Author:
- rool
- Date:
- Wed Jun 19 05:51:04 +0100 2019
- Size:
- 3018 Bytes
- Properties:
- Property svn:mergeinfo is set
1 | <p style="border: 1px solid black; background: #eee; padding: 15px"> |
2 | <font color="#800">We use cookies to keep you signed in across the |
3 | various sections of the RISC OS Open web site, so if you proceed we will |
4 | assume that you are happy with this. For more information, please see our |
5 | <a href="https://www.riscosopen.org/content/documents/privacy">privacy |
6 | policy</a> page.</font> |
7 | </p> |
8 | |
9 | Please supply the information required in the form below to create a new |
10 | web site account, then use the "Sign up" button to create the account and |
11 | log in. |
12 | |
13 | <p /> |
14 | Your <b>e-mail address</b> is required for account activation. Please give a |
15 | reasonably complete <b>real name</b> that you are happy being used in forum posts, |
16 | documentation pages, welcome messages and so-on (e.g. "John Doe"). Your |
17 | <b>password</b> can consist of any combination of letters, numbers and symbols |
18 | but must be at least four characters long. |
19 | |
20 | <p /> |
21 | <%= error_messages_for :user %> |
22 | |
23 | <% form_for :user do |f| %> |
24 | <p /> |
25 | <table class="list" cellspacing="1" cellpadding="4" border="1" align="center" bgcolor="#ffffff"> |
26 | <tr> |
27 | <th bgcolor="#eeeeee" align="left"><label for="email">E-mail address</label></th> |
28 | <td><%= f.text_field :email, { :size => 40, :maxlength => 200 } %></td> |
29 | </tr> |
30 | <tr> |
31 | <th bgcolor="#eeeeee" align="left"><label for="real_name">Real name</label></th> |
32 | <td><%= f.text_field :real_name, { :size => 40, :maxlength => 128 } %></td> |
33 | </tr> |
34 | <tr> |
35 | <th bgcolor="#eeeeee" align="left"><label for="password">Password</label></th> |
36 | <td><%= f.password_field :password, { :size => 40, :maxlength => 40 } %></td> |
37 | </tr> |
38 | <tr> |
39 | <th bgcolor="#eeeeee" align="left"><label for="password_confirmation">Confirm password</label></th> |
40 | <td><%= f.password_field :password_confirmation, { :size => 40, :maxlength => 40 } %></td> |
41 | </tr> |
42 | <tr> |
43 | <td colspan="2"> |
44 | <div align="center"> |
45 | <br /> |
46 | Please prove that you're a human! |
47 | |
48 | <br /> |
49 | <br /> |
50 | <%= recaptcha_tags( :ssl => true ) %> |
51 | |
52 | <br /> |
53 | </div> |
54 | </td> |
55 | </tr> |
56 | </table> |
57 | |
58 | <p align="center" /> |
59 | <%= submit_tag('Sign up') %> |
60 | <% end %> |
61 | |
62 | <p /> |
63 | We will never pass your details to third parties or send you unsolicited e-mail messages. |
64 | For more information, please see our <a href="/content/documents/privacy/">privacy page</a>. |
65 | |
66 | <p /> |
67 | If you don't want to do this, you can |
68 | <%= link_to 'go back to the control panel', :controller => 'tasks', :action => 'index' %> |
69 | instead. |