Update login

Add profile
This commit is contained in:
RemiZOffAlex
2019-04-26 19:38:23 +03:00
parent bba7df52d2
commit 1e9ac7eb97
17 changed files with 237 additions and 46 deletions
+19 -5
View File
@@ -13,14 +13,28 @@
<div class="form-group">
{{ pagedata['form'].text.label }}
{{ pagedata['form'].text(class="form-control") }}
<script>
CKEDITOR.replace( 'text', {
customConfig: '/static/js/ckeditor-conf.js'
} );
</script>
</div>
<button class="btn btn-outline-success float-right"><i class="fa fa-save-o"></i> Сохранить</button>
</form>
{% endblock %}
{% block script %}
<script type="text/javascript" src="/static/ckeditor/ckeditor.js"></script>
<script type="text/javascript">
var app = new Vue({
el: '#app',
data: {
},
methods: {
},
mounted: function () {
CKEDITOR.replace( 'text', {
customConfig: '/static/js/ckeditor-conf.js'
} );
}
})
</script>
{% endblock %}