mirror of
https://github.com/penpot/penpot.git
synced 2026-06-02 05:30:19 +00:00
48 lines
1.8 KiB
Clojure
48 lines
1.8 KiB
Clojure
;; This Source Code Form is subject to the terms of the Mozilla Public
|
|
;; License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
;; file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
;;
|
|
;; Copyright (c) 2016 Andrey Antukh <niwi@niwi.nz>
|
|
;; Copyright (c) 2016 Juan de la Cruz <delacruzgarciajuan@gmail.com>
|
|
|
|
(ns uxbox.main.ui.settings.notifications
|
|
(:require [sablono.core :as html :refer-macros [html]]
|
|
[rum.core :as rum]
|
|
[cuerdas.core :as str]
|
|
[uxbox.util.router :as r]
|
|
[potok.core :as ptk]
|
|
[uxbox.builtins.icons :as i]
|
|
[rumext.core :as mx :include-macros true]
|
|
[uxbox.util.dom :as dom]
|
|
[uxbox.main.ui.settings.header :refer (header)]))
|
|
|
|
(mx/defc notifications-page
|
|
{:mixins [mx/static]}
|
|
[own]
|
|
[:main.dashboard-main
|
|
(header)
|
|
[:section.dashboard-content.user-settings
|
|
[:section.user-settings-content
|
|
[:span.user-settings-label "Prototype notifications"]
|
|
[:p "Get a roll up of prototype changes in your inbox."]
|
|
[:div.input-radio.radio-primary
|
|
[:input {:type "radio"
|
|
:id "notification-1"
|
|
:name "notification"
|
|
:value "none"}]
|
|
[:label {:for "notification-1"
|
|
:value "None"} "None"]
|
|
[:input {:type "radio"
|
|
:id "notification-2"
|
|
:name "notification"
|
|
:value "every-hour"}]
|
|
[:label {:for "notification-2"
|
|
:value "Every hour"} "Every hour"]
|
|
[:input {:type "radio"
|
|
:id "notification-3"
|
|
:name "notification"
|
|
:value "every-day"}]
|
|
[:label {:for "notification-3" :value "Every day"} "Every day"]]
|
|
[:input.btn-primary {:type "submit" :value "Update settings"}]
|
|
]]])
|