diff options
author | Haakon Meland Eriksen <haakon.eriksen@far.no> | 2014-06-24 19:34:36 +0200 |
---|---|---|
committer | Haakon Meland Eriksen <haakon.eriksen@far.no> | 2014-06-24 19:34:36 +0200 |
commit | b8dc9e855af2d30f33d0f90dc13d8cad0a7b3e70 (patch) | |
tree | 718df6305bcb82c8dcb4b287a7132422e748cdfb /view/tpl/channel_import.tpl | |
parent | c2d520f1be115fb3cb5da2a35eb10146cecee8aa (diff) | |
parent | a92fb0b04c3e6474ec48faf8e4cc65c382e89d66 (diff) | |
download | volse-hubzilla-b8dc9e855af2d30f33d0f90dc13d8cad0a7b3e70.tar.gz volse-hubzilla-b8dc9e855af2d30f33d0f90dc13d8cad0a7b3e70.tar.bz2 volse-hubzilla-b8dc9e855af2d30f33d0f90dc13d8cad0a7b3e70.zip |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'view/tpl/channel_import.tpl')
-rwxr-xr-x | view/tpl/channel_import.tpl | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/view/tpl/channel_import.tpl b/view/tpl/channel_import.tpl new file mode 100755 index 000000000..f7635ea52 --- /dev/null +++ b/view/tpl/channel_import.tpl @@ -0,0 +1,35 @@ +<h2>{{$title}}</h2> + +<form action="import" method="post" enctype="multipart/form-data" id="import-channel-form"> + + <div id="import-desc" class="descriptive-paragraph">{{$desc}}</div> + + <label for="import-filename" id="label-import-filename" class="import-label" >{{$label_filename}}</label> + <input type="file" name="filename" id="import-filename" class="import-input" value="" /> + <div id="import-filename-end" class="import-field-end"></div> + + <div id="import-choice" class="descriptive-paragraph">{{$choice}}</div> + + <label for="import-old-address" id="label-import-old-address" class="import-label" >{{$label_old_address}}</label> + <input type="text" name="old_address" id="import-old-address" class="import-input" value="" /> + <div id="import-old-address-end" class="import-field-end"></div> + + <label for="import-old-email" id="label-import-old-email" class="import-label" >{{$label_old_email}}</label> + <input type="text" name="email" id="import-old-email" class="import-input" value="{{$email}}" /> + <div id="import-old-email-end" class="import-field-end"></div> + + <label for="import-old-pass" id="label-import-old-pass" class="import-label" >{{$label_old_pass}}</label> + <input type="password" name="password" id="import-old-pass" class="import-input" value="{{$pass}}" /> + <div id="import-old-pass-end" class="import-field-end"></div> + + <div id="import-common-desc" class="descriptive-paragraph">{{$common}}</div> + + <input type="checkbox" name="make_primary" id="import-make-primary" value="1" /> + <label for="import-make-primary" id="label-import-make-primary">{{$label_import_primary}}</label> + <div id="import-make-primary-end" class="import-field-end"></div> + + <input type="submit" name="submit" id="import-submit-button" value="{{$submit}}" /> + <div id="import-submit-end" class="import-field-end"></div> + +</form> + |