]> git.mxchange.org Git - friendica.git/blob - view/templates/crepair.tpl
Merge pull request #1512 from fraengii/2015-04-12-Account-Basics.md
[friendica.git] / view / templates / crepair.tpl
1 <form id="crepair-form" action="crepair/{{$contact_id}}" method="post" >
2
3 <h4>{{$contact_name}}</h4>
4
5 <div id="contact-update-profile-wrapper">
6 {{if $update_profile}}
7         <span id="contact-update-profile-now" class="button"><a href="contacts/{{$contact_id}}/updateprofile" >{{$udprofilenow}}</a></span>
8 {{/if}}
9 </div>
10
11 <label id="crepair-name-label" class="crepair-label" for="crepair-name">{{$label_name}}</label>
12 <input type="text" id="crepair-name" class="crepair-input" name="name" value="{{$contact_name|escape:'html'}}" />
13 <div class="clear"></div>
14
15 <label id="crepair-nick-label" class="crepair-label" for="crepair-nick">{{$label_nick}}</label>
16 <input type="text" id="crepair-nick" class="crepair-input" name="nick" value="{{$contact_nick|escape:'html'}}" />
17 <div class="clear"></div>
18
19 <label id="crepair-attag-label" class="crepair-label" for="crepair-attag">{{$label_attag}}</label>
20 <input type="text" id="crepair-attag" class="crepair-input" name="attag" value="{{$contact_attag|escape:'html'}}" />
21 <div class="clear"></div>
22
23 <label id="crepair-url-label" class="crepair-label" for="crepair-url">{{$label_url}}</label>
24 <input type="text" id="crepair-url" class="crepair-input" name="url" value="{{$contact_url|escape:'html'}}" />
25 <div class="clear"></div>
26
27 <label id="crepair-request-label" class="crepair-label" for="crepair-request">{{$label_request}}</label>
28 <input type="text" id="crepair-request" class="crepair-input" name="request" value="{{$request|escape:'html'}}" />
29 <div class="clear"></div>
30  
31 <label id="crepair-confirm-label" class="crepair-label" for="crepair-confirm">{{$label_confirm}}</label>
32 <input type="text" id="crepair-confirm" class="crepair-input" name="confirm" value="{{$confirm|escape:'html'}}" />
33 <div class="clear"></div>
34
35 <label id="crepair-notify-label" class="crepair-label" for="crepair-notify">{{$label_notify}}</label>
36 <input type="text" id="crepair-notify" class="crepair-input" name="notify" value="{{$notify|escape:'html'}}" />
37 <div class="clear"></div>
38
39 <label id="crepair-poll-label" class="crepair-label" for="crepair-poll">{{$label_poll}}</label>
40 <input type="text" id="crepair-poll" class="crepair-input" name="poll" value="{{$poll|escape:'html'}}" />
41 <div class="clear"></div>
42
43 <label id="crepair-photo-label" class="crepair-label" for="crepair-photo">{{$label_photo}}</label>
44 <input type="text" id="crepair-photo" class="crepair-input" name="photo" value="" />
45 <div class="clear"></div>
46 {{if $allow_remote_self eq 1}}
47 <h4>{{$label_remote_self}}</h4>
48 {{include file="field_select.tpl" field=$remote_self}}
49 {{/if}}
50
51 <input type="submit" name="submit" value="{{$lbl_submit|escape:'html'}}" />
52
53 </form>
54
55