Files
standardnotes-app-web/app/assets/templates/frontend/directives/account-keys-section.html.haml
2017-01-25 15:52:03 -06:00

12 lines
446 B
Plaintext

.account-keys-section
.keys
.key{"ng-repeat" => "key in keys"}
.name {{key.name}}
.value {{key.key}}
%a{"ng-click" => "newKeyData.showForm = !newKeyData.showForm"} Add New Key
%form{"ng-if" => "newKeyData.showForm"}
%input{"ng-model" => "newKeyData.name", "placeholder" => "Name your key"}
%input{"ng-model" => "newKeyData.key", "placeholder" => "Key"}
%button.light{"ng-click" => "submitNewKeyForm()"} Add Key