]> git.openstreetmap.org Git - rails.git/blob - app/views/oauth_clients/_form.html.erb
e55b016e982a2ce7e11eb28979c675160714996c
[rails.git] / app / views / oauth_clients / _form.html.erb
1 <div class="field">
2         <label for="client_application_name">Name*</label><br/>
3         <%= f.text_field :name %>
4 </div>
5 <div class="field">
6         <label for="client_application_url">Main Application URL*</label><br/>
7         <%= f.text_field :url %>
8 </div>
9 <div class="field">
10         <label for="client_application_callback_url">Callback URL*</label><br/>
11         <%= f.text_field :callback_url %>
12 </div>
13 <div class="field">
14         <label for="client_application_support_url">Support URL</label><br/>
15         <%= f.text_field :support_url %>
16 </div>
17 <div class="field">
18   <%= f.check_box :allow_read_prefs %>
19   <label for="client_application_allow_read_prefs">Request permission to read the user preferences.</label><br/>
20 </div>
21 <div class="field">
22   <%= f.check_box :allow_write_prefs %>
23   <label for="client_application_allow_write_prefs">Request permission to write the user preferences.</label><br/>
24 </div>
25 <div class="field">
26   <%= f.check_box :allow_write_diary %>
27   <label for="client_application_allow_write_diary">Request permission to create diary entries, comments and friends.</label><br/>
28 </div>
29 <div class="field">
30   <%= f.check_box :allow_write_api %>
31   <label for="client_application_allow_write_api">Request permission to write the API on the user's behalf.</label><br/>
32 </div>
33 <div class="field">
34   <%= f.check_box :allow_read_gpx %>
35   <label for="client_application_allow_read_gpx">Request permission to read the user's private GPS traces.</label><br/>
36 </div>
37 <div class="field">
38   <%= f.check_box :allow_write_gpx %>
39   <label for="client_application_allow_write_gpx">Request permission to upload GPS traces as the user.</label><br/>
40 </div>