diff --git a/app/scripts/controllers/usersmodal.js b/app/scripts/controllers/usersmodal.js
index bb7027ed..4f3fbd8f 100644
--- a/app/scripts/controllers/usersmodal.js
+++ b/app/scripts/controllers/usersmodal.js
@@ -1,12 +1,13 @@
import { getHashAndSalt, isValidMSISDN } from '../utils'
-export function UsersModalCtrl ($http, $scope, $uibModalInstance, $timeout, Api, login, Notify, Alerting, user) {
+export function UsersModalCtrl ($http, $scope, $uibModalInstance, $sce, $timeout, Api, login, Notify, Alerting, user) {
/*************************************************************/
/** These are the functions for the User initial load **/
/*************************************************************/
// default - update is false
$scope.update = false
+ $scope.phoneNumberTooltip = $sce.trustAsHtml('Accepted format:
27123456789
( 5 - 15 digits )')
// object for the taglist roles
$scope.taglistUserRoleOptions = []
diff --git a/app/views/usersmodal.html b/app/views/usersmodal.html
index 18e49af9..435c303e 100644
--- a/app/views/usersmodal.html
+++ b/app/views/usersmodal.html
@@ -38,7 +38,7 @@