diff options
-rw-r--r-- | public/index.html | 2 | ||||
-rw-r--r-- | src/genpass/core.cljs | 14 |
2 files changed, 10 insertions, 6 deletions
diff --git a/public/index.html b/public/index.html index 1020e19..567514b 100644 --- a/public/index.html +++ b/public/index.html @@ -7,7 +7,7 @@ </head> <body> <div id="app"> - <h3>Loading Pathfinder Tools...</h3> + <h3>Loading genpass...</h3> </div> <script src="./js/app.js" type="text/javascript"></script> diff --git a/src/genpass/core.cljs b/src/genpass/core.cljs index 1e71f76..6ae0f4a 100644 --- a/src/genpass/core.cljs +++ b/src/genpass/core.cljs @@ -6,14 +6,18 @@ (def password (r/atom (genpwd))) (defn main-section [] - [:div.columns>div.column + [:div [:div.field>div.control>input.input.is-primary {:type "text" :value @password}] - [:div.field>div.control>input.button.is-primary - {:value "Generate" - :type "button" - :on-click #(reset! password (genpwd))}]]) + [:div.field.is-grouped + [:div.control>input.button.is-primary + {:value "Generate" + :type "button" + :on-click #(reset! password (genpwd))}] + [:div.control>input.button.is-primary.is-success + {:value "Copy" + :type "button"}]]]) (defn home-page [] [:div |