Stefan,
Please follow these steps:
1 Open page where you have signup form.
2 Open "data" tab on this page. http://prntscr.com/3ouuie/direct
3 Open "events" bottom panel. http://prntscr.com/3ouutv/direct
4 Select in components your signup datasource and add "success" event handler with type "JS" and populate with following JS code: http://prntscr.com/3ouwpf/direct
precode
//Get userName from serviceResponse.
var userName = data.username;
//Save userName into "label_userName" LSV.
localStorage.setItem("label_userName", userName);
/code/pre
5 Then open page where you need to display "userName".
6 Add "JS" event handler to the "page show" event. And fill it with following code: http://prntscr.com/3ouxj1/direct
precode
//get value from "currentUserName" LSV.
var storedUserName = localStorage.getItem("label_userName");
//Where "label_userName" - name of the label component on this page.
Apperyio("label_userName").text(storedUserName);
/code/pre
That's all.
Regards.