25 строки
719 B
HTML
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}}
|