Files
mostlymatter/web/templates/signup_team_confirm.html
Joram Wilander 2fef71da69 Merge pull request #222 from rgarmsen2295/mm-1574
MM-1574 Fixed typo in the 'Sign up Complete' page: you email -> your email
2015-07-22 07:36:33 -04:00

25 строки
719 B
HTML

{{define "signup_team_confirm"}}
<!DOCTYPE html>
<html>
{{template "head" . }}
<body class="white">
<div class="container-fluid">
<div class="inner__wrap">
<div class="row content">
<div class="col-sm-12">
<div class="signup-team__container">
<h3>Sign up Complete</h3>
<p>Please check your email: {{ .Props.Email }}<br>
Your email contains a link to set up your team</p>
</div>
</div>
</div>
<div class="row footer">
{{template "footer" . }}
</div>
</div>
</div>
</body>
</html>
{{end}}