Initial commit

This commit is contained in:
Senad Uka
2020-05-31 22:38:19 +02:00
commit 858fafc3c5
1280 changed files with 65918 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
<p>
Hi!
</p>
<p>
You have been added as an Account Manager for <%= @account.name %>.</p>
<p>To switch between accounts, tap the account name at the top of the page, and select the appropriate account in the drop-down.
</p>
<p>
- BiG Team
</p>

View File

@@ -0,0 +1,6 @@
Hi!
You have been added as an Account Manager for <%= @account.name %> To switch between accounts, tap the account name at the top of the page, and select the appropriate account in the drop-down.
- BiG Team

View File

@@ -0,0 +1,15 @@
<p>
Hello,
</p>
<p>
To reset your password, please click on the following link:
</p>
<p>
<%= link_to "Reset Password", edit_password_reset_url(id: @user.password_reset_token, host: AppHost.new.domain_with_port) %>
</p>
<p>
- BiG Team
</p>

View File

@@ -0,0 +1,7 @@
Hello,
To reset your password, please paste the following link into your browser:
<%= edit_password_reset_url(id: @user.password_reset_token, host: AppHost.new.domain_with_port) %>
- BiG Team

View File

@@ -0,0 +1,14 @@
<p>
Welcome to the ME Suite.
</p>
<p>
<%= @project.account.name %> has invited you to <%= @project.name %>.
<% if @user_is_new %>
Please <%= link_to "click here", edit_password_reset_url(id: @user.password_reset_token, host: AppHost.new.domain_with_port) %> to set your password.
<% end %>
</p>
<p>
If you have questions about how to use the software, please visit <%= link_to "BiGMedia.ai", "https://www.bigmedia.ai/contact" %>.
</p>

View File

@@ -0,0 +1,10 @@
Welcome to the ME Suite.
<%= @project.account.name %> has invited you to <%= @project.name %>.
<% if @user_is_new %>
Please click below to set your password.
<%= edit_password_reset_url(id: @user.password_reset_token, host: AppHost.new.domain_with_port) %>
<% end %>
If you have questions about how to use the software, please visit https://www.bigmedia.ai/contact.

View File

@@ -0,0 +1,15 @@
<p>
Welcome to BiG!
</p>
<p>
You have been added to the <q><%= @account.name %></q> account.
</p>
<p>
To access your account, <%= link_to "click here", edit_password_reset_url(id: @user.password_reset_token, host: AppHost.new.domain_with_port) %> and set your password. Then use your email and new password to sign in.
</p>
<p>
- BiG Team
</p>

View File

@@ -0,0 +1,9 @@
Welcome to BiG!
You have been added to the "<%= @account.name %>" account.
To access your account click the following URL and set your password. Then use your email and new password to sign in.
<%= edit_password_reset_url(id: @user.password_reset_token, host: AppHost.new.domain_with_port) %>
- BiG Team