my-bookmark/public/views/settings.html

47 lines
2.6 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<div class="ui segment">
<div class="ui grid">
<div class="four wide stretched column">
<div class="ui secondary vertical pointing menu">
<a class="item" ng-class="{active:form[0]}" ng-click="changeForm(0)">重置密码
</a>
<a class="item" ng-class="{active:form[1]}" ng-click="changeForm(1)">书签显示设置
</a>
<a class="item" ng-class="{active:form[2]}" ng-click="changeForm(2)">上传书签
</a>
</div>
</div>
<div class="twelve wide stretched column">
<form class="ui form" ng-show="form[0]">
<div class="required field">
<label>原密码</label>
<input type="password" placeholder="" ng-model="passwordOrgin">
</div>
<div class="required field">
<label>新密码</label>
<input type="password" placeholder="" ng-model="passwordNew1">
</div>
<div class="required field">
<label>确认密码</label>
<input type="password" placeholder="" ng-model="passwordNew2">
</div>
<button class="ui button" type="submit" ng-click="resetPassword()">重置密码</button>
</form>
<form class="ui form" ng-show="form[1]">
书签显示设置(正在开发中...)
</form>
<form class="ui form" ng-show="form[2]">
<div id="fileuploader" style="min-width:100px">点我上传</div>
<h2 class="ui dividing header">注意事项</h2>
<p>1、导入的方法是将浏览器里面收藏的网站导出HTML文件。然后将导出的HTML文件点击上面的Upload按钮上传到服务器。目前只测试过谷歌浏览器跟IE浏览器的书签导入。如果要导入其他浏览器的书签建议先将他导入谷歌浏览器再导出。</p>
<p>2、谷歌浏览器书签导出文件方法<a href="http://jingyan.baidu.com/article/0bc808fc2d3b841bd485b9fb.html" target="_blank">chrome浏览器书签导出</a>
</p>
<p>3、IE浏览器书签导出文件方法(里面含有导入的方法,请无视)<a href="http://jingyan.baidu.com/article/0bc808fc6a5bc31bd485b91b.html" target="_blank">IE浏览器收藏夹的导入</a>
</p>
<p>4、导入的文件不能超过10M</p>
<p>5、最好不要重复导入。</p>
</p>
</form>
</div>
</div>
</div>