I'm working on a project and i need to use multiple html pages to interact with my code like: viewing index.html first:-
path = os.path.join(os.path.dirname(__file__), 'index.html')
self.response.out.write(template.render(path, template_values))
and then when i press the sign out button the program should view this page:-
path = os.path.join(os.path.dirname(__file__), 'signOut.html')
self.response.out.write(template.render(path, template_values))
the problem is that the program views the two pages together at one time and this is not what i want.
could you plz tell me how can I view them seperately