Fix text in account setup screen

This commit is contained in:
Girish Ramakrishnan
2018-08-05 21:58:07 -07:00
parent a8ba0b91f7
commit f7a7e4e95a
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -52,7 +52,7 @@ app.controller('Controller', ['$scope', function ($scope) {
<% } %>
<div class="form-group">
<label class="control-label">Display Name</label>
<label class="control-label">Full Name</label>
<input type="displayName" class="form-control" ng-model="displayName" name="displayName" required>
</div>
@@ -72,7 +72,7 @@ app.controller('Controller', ['$scope', function ($scope) {
<input type="password" class="form-control" ng-model="passwordRepeat" name="passwordRepeat" required>
</div>
<input class="btn btn-primary btn-outline pull-right" type="submit" value="Create" ng-disabled="setupForm.$invalid || password !== passwordRepeat"/>
<center><input class="btn btn-primary btn-outline" type="submit" value="Setup" ng-disabled="setupForm.$invalid || password !== passwordRepeat"/></center>
</form>
</div>
</div>
+1 -1
View File
@@ -318,7 +318,7 @@ function renderAccountSetupSite(res, req, userObject, error) {
csrf: req.csrfToken(),
resetToken: req.query.reset_token || req.body.resetToken,
email: req.query.email || req.body.email,
title: 'Password Setup'
title: 'Account Setup'
});
}