34 lines
994 B
Plaintext
Executable File
34 lines
994 B
Plaintext
Executable File
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
|
|
</head>
|
|
<body>
|
|
<h2><%= @user.name %> just signed up.</h2>
|
|
<p>
|
|
Please contact them at <%= @user.email %><%= " or "+@user.phone.to_s unless @user.phone.blank? %> to set up a
|
|
new user orientation, waiver, welcome, payment help, etc.
|
|
</p>
|
|
<p>
|
|
User Details: <%= link_to @url+user_path(@user), @url+user_path(@user) %>
|
|
</p>
|
|
<p>
|
|
<b>Member Level:</b>
|
|
<%= simple_format @user.member_level_string %>
|
|
</p>
|
|
<p>
|
|
<b>What skills, knowledge and experience do you bring to the community?</b>
|
|
<%= simple_format @user.current_skills %>
|
|
</p>
|
|
<p>
|
|
<b>What skills, knowledge and experiences are you looking for in HeatSync?</b>
|
|
<%= simple_format @user.desired_skills %>
|
|
</p>
|
|
<p>
|
|
<b>How'd you find out about HeatSync?</b>
|
|
<%= simple_format @user.marketing_source %>
|
|
</p>
|
|
|
|
</body>
|
|
</html>
|