diff --git a/src/views/calculator/size1440/index.vue b/src/views/calculator/size1440/index.vue index 427f3d2..a275e08 100644 --- a/src/views/calculator/size1440/index.vue +++ b/src/views/calculator/size1440/index.vue @@ -1,22 +1,63 @@ - - 1440 - - - - - + + + + + + Investment Type + + Amount invested (in dollars) + Number of shares purchased + + + + + Amount to Calculate + + + Dividends reinvested + Dividends not reinvested + + + + + Investment Date + + + + + + Submit + + + + - diff --git a/src/views/calculator/size768/index.vue b/src/views/calculator/size768/index.vue index e7c4364..b035adc 100644 --- a/src/views/calculator/size768/index.vue +++ b/src/views/calculator/size768/index.vue @@ -1,22 +1,63 @@ - - 768 - - - - - + + + + + + Investment Type + + Amount invested (in dollars) + Number of shares purchased + + + + + Amount to Calculate + + + Dividends reinvested + Dividends not reinvested + + + + + Investment Date + + + + + + Submit + + + + - diff --git a/src/views/contacts/size1440/index.vue b/src/views/contacts/size1440/index.vue index 427f3d2..a843c5e 100644 --- a/src/views/contacts/size1440/index.vue +++ b/src/views/contacts/size1440/index.vue @@ -2,21 +2,44 @@ import { NCarousel, NDivider, NMarquee, NPopselect } from "naive-ui"; import { onUnmounted, ref, watch, onMounted, computed } from "vue"; +function copyEmail() { + navigator.clipboard.writeText('fiee@dlkadvisory.com'); +} - - 1440 - - + + + Investor Contacts + FiEE Inc. + Investor Relations + + Email: + fiee@dlkadvisory.com + + - diff --git a/src/views/contacts/size768/index.vue b/src/views/contacts/size768/index.vue index e7c4364..bd9f2d5 100644 --- a/src/views/contacts/size768/index.vue +++ b/src/views/contacts/size768/index.vue @@ -1,22 +1,41 @@ - - 768 - - - + + + Investor Contacts + FiEE Inc. + Investor Relations + + Email: + fiee@dlkadvisory.com + + - diff --git a/src/views/email-alerts/size1440/index.vue b/src/views/email-alerts/size1440/index.vue index 427f3d2..46b9e4a 100644 --- a/src/views/email-alerts/size1440/index.vue +++ b/src/views/email-alerts/size1440/index.vue @@ -1,22 +1,78 @@ - - 1440 - - + + + + + + + E-Mail Alerts + * Required Fields + + + * First Name + + + + * Last Name + + + + * Email + + + + * Company + + + + Phone + + + + Submit + + + + + + + Submitted successfully! + The information you submitted is as follows: + + First Name:{{ form.firstName }} + Last Name:{{ form.lastName }} + Email:{{ form.email }} + Company:{{ form.company }} + Phone:{{ form.phone || 'Not filled in' }} + Alert Type:{{ form.alertType === 'all' ? 'All Alerts' : 'Customize Alerts' }} + + + + - diff --git a/src/views/email-alerts/size768/index.vue b/src/views/email-alerts/size768/index.vue index e7c4364..17522fb 100644 --- a/src/views/email-alerts/size768/index.vue +++ b/src/views/email-alerts/size768/index.vue @@ -2,21 +2,78 @@ import { NCarousel, NDivider, NMarquee, NPopselect } from "naive-ui"; import { onUnmounted, ref, watch, onMounted, computed } from "vue"; +const form = ref({ + firstName: '', + lastName: '', + email: '', + company: '', + phone: '', + alertType: 'all', +}); +const submitted = ref(false); + +function handleSubmit(e) { + e.preventDefault(); + submitted.value = true; +} - - 768 - + - + + + + E-Mail Alerts + * Required Fields + + + * First Name + + + + * Last Name + + + + * Email + + + + * Company + + + + Phone + + + + Submit + + + + + + + Submitted successfully! + The information you submitted is as follows: + + First Name:{{ form.firstName }} + Last Name:{{ form.lastName }} + Email:{{ form.email }} + Company:{{ form.company }} + Phone:{{ form.phone || '(Not filled)' }} + Alert Type:{{ form.alertType === 'all' ? 'All Alerts' : 'Customize Alerts' }} + + + + + - diff --git a/src/views/stock-quote/size1440/index.vue b/src/views/stock-quote/size1440/index.vue index 427f3d2..5a675dd 100644 --- a/src/views/stock-quote/size1440/index.vue +++ b/src/views/stock-quote/size1440/index.vue @@ -1,22 +1,62 @@ - - 1440 - - + + + + ${{ stockQuote.change?.[0].slice(0,4) }} + NASDAQ: MINM + {{ formatted }} + + + + + Open + {{ stockQuote.Open }} + + + Change + {{ stockQuote.change?.join('') }} + + + Day's Range + {{ stockQuote.DaysRange }} + + + 52-Week Range + {{ stockQuote.Week52Range }} + + + Volume + {{ stockQuote.Volume }} + + + Market Cap + {{ stockQuote.MarketCap }} + + - diff --git a/src/views/stock-quote/size768/index.vue b/src/views/stock-quote/size768/index.vue index e7c4364..5a3e91e 100644 --- a/src/views/stock-quote/size768/index.vue +++ b/src/views/stock-quote/size768/index.vue @@ -1,22 +1,68 @@ - - 768 - + - + + + + ${{ stockQuote.change?.[0].slice(0,4) }} + NASDAQ: MINM + {{ formatted }} + + + + + Open + {{ stockQuote.Open }} + + + Change + {{ stockQuote.change?.join('') }} + + + Day's Range + {{ stockQuote.DaysRange }} + + + 52-Week Range + {{ stockQuote.Week52Range }} + + + Volume + {{ stockQuote.Volume }} + + + Market Cap + {{ stockQuote.MarketCap }} + + + -
* Required Fields