Просмотр исходного кода

Revert "remove original code"

This reverts commit e3662913f9177fa91091a933d4272813c89f076e.
yusuketk 6 лет назад
Родитель
Сommit
d29b5a1da6
1 измененных файлов с 70 добавлено и 0 удалено
  1. 70 0
      src/server/views/me/index.html

+ 70 - 0
src/server/views/me/index.html

@@ -122,6 +122,76 @@
       <legend>{{ t('Set Profile Image') }}</legend>
 
       <div id="profile-image-form"></div>
+<!--      <div class="form-group col-md-2 col-sm-offset-1 col-sm-4">
+        <h4>
+          <div class="radio radio-primary">
+            <input type="radio" id="radioGravatar" form="formImageType" name="imagetypeForm[isGravatarEnabled]" value="true" {% if user.isGravatarEnabled %}checked="checked"{% endif %}>
+            <label for="radioGravatar">
+              <img src="https://gravatar.com/avatar/00000000000000000000000000000000?s=24" /> Gravatar
+            </label>
+            <a href="https://gravatar.com/">
+              <small><i class="icon-arrow-right-circle" aria-hidden="true"></i></small>
+            </a>
+          </div>
+        </h4>
+
+        <img src="{{ user|gravatar }}" width="64">
+      </div>
+
+      <div class="form-group col-md-4 col-sm-7">
+        <h4>
+          <div class="radio radio-primary">
+            <input type="radio" id="radioUploadPicture" form="formImageType" name="imagetypeForm[isGravatarEnabled]" value="false" {% if !user.isGravatarEnabled  %}checked="checked"{% endif %}>
+            <label for="radioUploadPicture">
+              {{ t('Upload Image') }}
+            </label>
+          </div>
+        </h4>
+        <div class="form-group">
+          <div id="pictureUploadFormMessage"></div>
+          <label for="" class="col-sm-4 control-label">
+            {{ t('Current Image') }}
+          </label>
+          <div class="col-sm-8">
+            <p>
+            <img src="{{ user|uploadedpicture }}" class="picture picture-lg img-circle" id="settingUserPicture"><br>
+            </p>
+            <p>
+            <form id="remove-attachment" action="/_api/attachments.removeProfileImage" method="post" class="form-horizontal"
+                style="{% if not user.imageAttachment %}display: none{% endif %}">
+              <input type="hidden" name="_csrf" value="{{ csrf() }}">
+              <button type="submit" class="btn btn-danger">{{ t('Delete Image') }}</button>
+            </form>
+            </p>
+          </div>
+        </div>
+
+        <div class="form-group">
+          <label for="" class="col-sm-4 control-label">
+            {{ t('Upload new image') }}
+          </label>
+          <div class="col-sm-8">
+            {% if fileUploadService.getIsUploadable() %}
+            <form action="/_api/attachments.uploadProfileImage" id="pictureUploadForm" method="post" class="form-horizontal" role="form">
+              <input type="hidden" name="_csrf" value="{{ csrf() }}">
+              <input type="file" name="profileImage" accept="image/*">
+              <div id="pictureUploadFormProgress" class="d-flex align-items-center">
+              </div>
+            </form>
+            {% else %}
+            * {{ t('page_me.form_help.profile_image1') }}<br>
+            * {{ t('page_me.form_help.profile_image2') }}<br>
+            {% endif %}
+          </div>
+        </div>
+
+      </div>
+
+      <div class="form-group">
+        <div class="col-sm-offset-4 col-sm-6">
+          <button type="submit" form="formImageType" class="btn btn-primary">{{ t('Update') }}</button>
+        </div>
+      </div> -->
 
     </fieldset>
   </div><!-- /.form-box -->