Multi-Page Template design problems
The back button appears only for Ajax navigation.
In your code you use Tiggr.navigateTo('SCREEN_NAME') function which does a full page refresh (not Ajax).
It's better to use Navigate to Page action or if you still prefer to use JavaScript API, you should use this:
code
Tiggzi.navigateTo('GetJobScreen',{})
/code
for ajax navigation.