Skip to content

Commit

Permalink
replaced 'application name' with 'controlcloud'
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanzander committed Nov 17, 2017
1 parent dbb1fea commit 65b8bf9
Show file tree
Hide file tree
Showing 18 changed files with 23 additions and 6,535 deletions.
Binary file modified .DS_Store
Binary file not shown.
4 changes: 3 additions & 1 deletion client/main.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@
<meta charset="utf-8">
<title>ControlCloud</title>
<meta name="description" content="A description for the application.">
<meta name="viewport" content="initial-scale=1, minimal-ui, maximum-scale=1, minimum-scale=1" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.6.1/css/bulma.css" /> -->
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" />
<link rel="shortcut icon" type="image/png" href="/favicon.png" sizes="16x16 32x32 64x64">
<link rel="apple-touch-icon" sizes="120x120" href="/favicon.png">

</head>

<body>
Expand Down
Binary file added imports/.DS_Store
Binary file not shown.
4 changes: 2 additions & 2 deletions imports/api/Users/server/send-welcome-email.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ import getOAuthProfile from '../../../modules/get-oauth-profile';
export default (options, user) => {
const OAuthProfile = getOAuthProfile(options, user);

const applicationName = 'Application Name';
const applicationName = 'CloudControl';
const firstName = OAuthProfile ? OAuthProfile.name.first : options.profile.name.first;
const emailAddress = OAuthProfile ? OAuthProfile.email : options.email;

return sendEmail({
to: emailAddress,
from: `${applicationName} <support@application.com>`,
from: `${applicationName} <support@cloudcontrol.com>`,
subject: `[${applicationName}] Welcome, ${firstName}!`,
template: 'welcome',
templateVars: {
Expand Down
4 changes: 2 additions & 2 deletions imports/startup/server/accounts/email-templates.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import getPrivateFile from '../../../modules/server/get-private-file';
import templateToHTML from '../../../modules/server/handlebars-email-to-html';
import templateToText from '../../../modules/server/handlebars-email-to-text';

const name = 'Application Name';
const email = '<support@application.com>';
const name = 'ControlCloud';
const email = '<support@controlcloud.com>';
const from = `${name} ${email}`;
const emailTemplates = Accounts.emailTemplates;

Expand Down
Binary file added imports/ui/.DS_Store
Binary file not shown.
4 changes: 4 additions & 0 deletions imports/ui/components/Navigation/Navigation.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
@import '../../stylesheets/mixins';
@import '../../stylesheets/colors';

.navbar {
border-radius: 0;
border-left: none;
border-right: none;
border-top: none;
color: $primary;
}
4 changes: 2 additions & 2 deletions imports/ui/components/PageHeader/PageHeader.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
@import '../../stylesheets/colors';

.PageHeader {
border-bottom: 1px solid $gray-lighter;
border-bottom: 1px solid $primary;
padding: 0px 0 20px;
margin-bottom: 20px;

Expand All @@ -16,7 +16,7 @@
font-size: 14px;
margin-top: 10px;
margin-bottom: 0;
color: $gray-light;
color: white;
}
}

Expand Down
Binary file added imports/ui/pages/.DS_Store
Binary file not shown.
5 changes: 1 addition & 4 deletions imports/ui/pages/Index/Index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,7 @@ import './Index.scss';

const Index = () => (
<div className="Index">
<img
src="https://s3-us-west-2.amazonaws.com/cleverbeagle-assets/graphics/email-icon.png"
alt="Clever Beagle"
/>
<img src="./mainLogoLarge.jpg"/>
<h1>CloudControl</h1>
<p>Simple Cloud Based Invoicing.</p>

Expand Down
9 changes: 5 additions & 4 deletions imports/ui/pages/Index/Index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

.Index {
padding: 20px;
background: $cb-blue;

text-align: center;
border-radius: 3px;
color: #fff;
Expand All @@ -15,11 +15,12 @@

h1 {
font-size: 28px;
color: #028ECC;
}

p {
font-size: 18px;
color: lighten($cb-blue, 25%);
color: #028ECC;
}

> div {
Expand All @@ -43,12 +44,12 @@
p {
font-size: 14px;
line-height: 22px;
color: lighten($cb-blue, 35%);
color: white;
margin: 0;
}

p a {
color: lighten($cb-blue, 35%);
color: white;
text-decoration: underline;
}
}
Expand Down
Binary file added imports/ui/pages/Index/mainLogoLarge.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion imports/ui/stylesheets/colors.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
$primary: #337ab7;
$primary: #028ECC;
$success: #5cb85c;
$info: #5bc0de;
$warning: #f0ad4e;
Expand Down
Loading

0 comments on commit 65b8bf9

Please sign in to comment.