diff options
author | Gabriel Giovanini <gabrielg.desouza@gmail.com> | 2019-06-23 13:21:41 +0200 |
---|---|---|
committer | Gabriel Giovanini <gabrielg.desouza@gmail.com> | 2019-06-23 13:21:41 +0200 |
commit | e5ad37620f8f77763514a4934805a7e14574832a (patch) | |
tree | 28643df5f2e8f2fbc939c525e97d5ddf77ed3f5b /src | |
parent | 3d9360f12742ef2ec07d2c2997ac4c3690fb647d (diff) | |
download | genpass-e5ad37620f8f77763514a4934805a7e14574832a.tar.gz genpass-e5ad37620f8f77763514a4934805a7e14574832a.tar.bz2 genpass-e5ad37620f8f77763514a4934805a7e14574832a.zip |
Update to layout
Diffstat (limited to 'src')
-rw-r--r-- | src/genpass/core.cljs | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/genpass/core.cljs b/src/genpass/core.cljs index c65714f..186eaeb 100644 --- a/src/genpass/core.cljs +++ b/src/genpass/core.cljs @@ -5,16 +5,22 @@ (def password (r/atom (genpwd))) -(defn home-page [] +(defn main-section [] [:div.columns>div.column [:div.field>div.control>input.input.is-primary {:type "text" :value @password}] [:div.field>div.control>input.button.is-primary {:value "Generate" - :type "button" + :type "button" :on-click #(reset! password (genpwd))}]]) +(defn home-page [] + [:div + [:section.section>div.container + (main-section)] + [:footer.footer>div.content.has-text-centered>p "Link"]]) + (defn mount-root [] (r/render [home-page] (.getElementById js/document "app"))) |