|
@@ -9,35 +9,35 @@
|
|
|
|
|
|
|
|
<div class="modal-body">
|
|
<div class="modal-body">
|
|
|
|
|
|
|
|
- <form class="form-horizontal" id="create-page-today" role="form">
|
|
|
|
|
- <fieldset>
|
|
|
|
|
|
|
+ <form class="row form-horizontal" id="create-page-today" role="form">
|
|
|
|
|
+ <fieldset class="col-xs-12">
|
|
|
<legend>{{ t("Create today's") }}</legend>
|
|
<legend>{{ t("Create today's") }}</legend>
|
|
|
- <div class="row">
|
|
|
|
|
- <div class="col-xs-10 d-flex align-items-center">
|
|
|
|
|
|
|
+ <div class="d-flex create-page-input-container">
|
|
|
|
|
+ <div class="create-page-input-row d-flex align-items-center">
|
|
|
<span class="page-today-prefix">{{ userPageRoot(user) }}/</span>
|
|
<span class="page-today-prefix">{{ userPageRoot(user) }}/</span>
|
|
|
<input type="text" data-prefix="{{ userPageRoot(user) }}/" class="page-today-input1 form-control text-center" value="{{ t('Memo') }}" id="" name="">
|
|
<input type="text" data-prefix="{{ userPageRoot(user) }}/" class="page-today-input1 form-control text-center" value="{{ t('Memo') }}" id="" name="">
|
|
|
<span class="page-today-suffix">/{{ now|datetz('Y/m/d') }}/</span>
|
|
<span class="page-today-suffix">/{{ now|datetz('Y/m/d') }}/</span>
|
|
|
<input type="text" data-prefix="/{{ now|datetz('Y/m/d') }}/" class="page-today-input2 form-control" id="page-today-input2" name="" placeholder="{{ t('Input page name (optional)') }}">
|
|
<input type="text" data-prefix="/{{ now|datetz('Y/m/d') }}/" class="page-today-input2 form-control" id="page-today-input2" name="" placeholder="{{ t('Input page name (optional)') }}">
|
|
|
</div>
|
|
</div>
|
|
|
- <div class="col-xs-2">
|
|
|
|
|
|
|
+ <div class="create-page-button-container">
|
|
|
<button type="submit" class="fcbtn btn btn-outline btn-rounded btn-primary btn-1f"><i class="icon-fw icon-doc"></i>{{ t('Create') }}</button>
|
|
<button type="submit" class="fcbtn btn btn-outline btn-rounded btn-primary btn-1f"><i class="icon-fw icon-doc"></i>{{ t('Create') }}</button>
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|
|
|
</fieldset>
|
|
</fieldset>
|
|
|
</form>
|
|
</form>
|
|
|
|
|
|
|
|
- <form class="form-horizontal m-t-15" id="create-page-under-tree" role="form">
|
|
|
|
|
- <fieldset>
|
|
|
|
|
|
|
+ <form class="row form-horizontal m-t-15" id="create-page-under-tree" role="form">
|
|
|
|
|
+ <fieldset class="col-xs-12">
|
|
|
<legend>{{ t('Create under', parentPath(path)) }}</legend>
|
|
<legend>{{ t('Create under', parentPath(path)) }}</legend>
|
|
|
- <div class="row">
|
|
|
|
|
- <div class="col-xs-10">
|
|
|
|
|
|
|
+ <div class="d-flex create-page-input-container">
|
|
|
|
|
+ <div class="create-page-input-row d-flex align-items-center">
|
|
|
{% if searchConfigured() %}
|
|
{% if searchConfigured() %}
|
|
|
<div class="clearfix" id="page-name-inputter"></div>
|
|
<div class="clearfix" id="page-name-inputter"></div>
|
|
|
{% else %}
|
|
{% else %}
|
|
|
<input type="text" value="{{ parentPath(path) }}" class="page-name-input form-control " placeholder="{{ t('Input page name') }}" required />
|
|
<input type="text" value="{{ parentPath(path) }}" class="page-name-input form-control " placeholder="{{ t('Input page name') }}" required />
|
|
|
{% endif %}
|
|
{% endif %}
|
|
|
</div>
|
|
</div>
|
|
|
- <div class="col-xs-2">
|
|
|
|
|
|
|
+ <div class="create-page-button-container">
|
|
|
<button type="submit" class="fcbtn btn btn-outline btn-rounded btn-primary btn-1f"><i class="icon-fw icon-doc"></i>{{ t('Create') }}</button>
|
|
<button type="submit" class="fcbtn btn btn-outline btn-rounded btn-primary btn-1f"><i class="icon-fw icon-doc"></i>{{ t('Create') }}</button>
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|