Firstly, you need to read the READ ME thread and search this forum before posting.
Secondly, it's possible but not easily. All TTX pages use HTML templates in the "templates" directory.
There are two kinds of template.
1. Gets a header & footer.
2. Does not get a header & footer.
It seems like you'd want to change your login.html template from type 1 into type 2. If you do this, you may lose other functions on the page that you'd have to manually put back into the template.
In the main ttx.cgi module, there is a section at the top that tells the system how to handle each template. Some of these contain a variable called "noheader". Find the line starting with login and change it as follows. I cannot gaurantee this will work to your liking.
login => { action => 'TTXLogin::login', access => 0, noheader => 1 },
THEN, you'd have to copy the entire contents of
header.shtml and paste it into the top of
login.html.
Then copy the entire contents of
footer.shtml and paste it at the bottom of
login.html.
Then simply REMOVE the menu bar stuff from the resulting file.
Good luck.