mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-24 07:56:48 +00:00
a9d0f36766
- Moved preference views to more general "my-account" area. - Started new layout for my-account with sidebar. - Added MFA to prefeences view (to be moved).
12 lines
518 B
PHP
12 lines
518 B
PHP
<div class="flex-container-row justify-space-between items-center gap-m item-list-row">
|
|
<label for="shortcut-{{ $id }}" class="bold flex px-m py-xs">{{ $label }}</label>
|
|
<div class="px-m py-xs">
|
|
<input type="text"
|
|
component="shortcut-input"
|
|
class="small flex-none shortcut-input px-s py-xs"
|
|
id="shortcut-{{ $id }}"
|
|
name="shortcut[{{ $id }}]"
|
|
readonly
|
|
value="{{ $shortcuts->getShortcut($id) }}">
|
|
</div>
|
|
</div> |