diff --git a/js/gratipay/new_team.js b/js/gratipay/new_team.js
index d7656713be..33b1fa7fff 100644
--- a/js/gratipay/new_team.js
+++ b/js/gratipay/new_team.js
@@ -23,6 +23,7 @@ Gratipay.new_team.submitForm = function (e) {
contentType: false,
dataType: 'json',
success: function (d) {
+ $('a.team_url').attr('href', d.team_url).text(d.team_url);
$('a.review_url').attr('href', d.review_url).text(d.review_url);
$('form').slideUp(500, function() {
$('.application-complete').slideDown(250);
diff --git a/www/new.spt b/www/new.spt
index 1ba9c98745..7d9ce0266d 100644
--- a/www/new.spt
+++ b/www/new.spt
@@ -45,9 +45,11 @@ still_migrating = delta > 0
}
-
{{ _("Thanks! Your public review ticket is:") }}
+
{{ _("Thanks! Your public team page is:") }}
+
+
{{ _("And your public review ticket is:") }}
-
{{ _( "You can track and participate in our review process there. We will send a notification to {email} when we finish our review."
+
{{ _( "You can watch and participate in our review process there. We will send a notification to {email} when we finish our review."
, email=user.participant.email_address
) }}
{{ _("Thanks for applying!") }}
diff --git a/www/teams/create.json.spt b/www/teams/create.json.spt
index 79c1f7f105..345295fbb3 100644
--- a/www/teams/create.json.spt
+++ b/www/teams/create.json.spt
@@ -75,5 +75,7 @@ if request.method == 'POST':
review_url = team.create_github_review_issue()
team.set_review_url(review_url)
+ team_url = website.env.base_url + '/{}/'.format(team.slug)
+
[---] application/json via json_dump
-{'review_url': review_url}
+{'review_url': review_url, 'team_url': team_url}