Index: client/Client/chat.cpp
===================================================================
--- client/Client/chat.cpp	(revision 109e8a32c1c097ed23f583d89b233a0abe457fcb)
+++ client/Client/chat.cpp	(revision b650f8ae14a68b3877a3c1aaf68a5475fc22478d)
@@ -19,7 +19,8 @@
 {
    for(unsigned int x=0; x<vctChat.size(); x++)
-      al_draw_text(font, color, 10, 140+x*15, ALLEGRO_ALIGN_LEFT, vctChat[x].c_str());
+      al_draw_text(font, color, 5, 100+x*15, ALLEGRO_ALIGN_LEFT, vctChat[x].c_str());
 
-   al_draw_text(font, color, 10, 460, ALLEGRO_ALIGN_LEFT, strPrompt.c_str());
+   // I think this might never be used
+   al_draw_text(font, color, 5, 460, ALLEGRO_ALIGN_LEFT, strPrompt.c_str());
 }
 
Index: client/Client/main.cpp
===================================================================
--- client/Client/main.cpp	(revision 109e8a32c1c097ed23f583d89b233a0abe457fcb)
+++ client/Client/main.cpp	(revision b650f8ae14a68b3877a3c1aaf68a5475fc22478d)
@@ -65,6 +65,6 @@
 
 const float FPS = 60;
-const int SCREEN_W = 640;
-const int SCREEN_H = 480;
+const int SCREEN_W = 1024;
+const int SCREEN_H = 768;
 
 enum STATE {
@@ -160,5 +160,5 @@
    }
  
-   display = al_create_display(SCREEN_W, SCREEN_H);
+  display = al_create_display(SCREEN_W, SCREEN_H);
    if(!display) {
       fprintf(stderr, "failed to create display!\n");
@@ -170,9 +170,9 @@
 
    wndLogin = new Window(0, 0, SCREEN_W, SCREEN_H);
-   wndLogin->addComponent(new Textbox(104, 40, 100, 20, font));
-   wndLogin->addComponent(new Textbox(104, 70, 100, 20, font));
-   wndLogin->addComponent(new Button(22, 100, 90, 20, font, "Create an Account", goToRegisterScreen));
-   wndLogin->addComponent(new Button(122, 100, 60, 20, font, "Login", login));
-   wndLogin->addComponent(new Button(540, 10, 80, 20, font, "Quit", quit));
+   wndLogin->addComponent(new Textbox(516, 40, 100, 20, font));
+   wndLogin->addComponent(new Textbox(516, 70, 100, 20, font));
+   wndLogin->addComponent(new Button(330, 100, 194, 20, font, "Create an Account", goToRegisterScreen));
+   wndLogin->addComponent(new Button(534, 100, 60, 20, font, "Login", login));
+   wndLogin->addComponent(new Button(920, 10, 80, 20, font, "Quit", quit));
 
    txtUsername = (Textbox*)wndLogin->getComponent(0);
@@ -180,10 +180,10 @@
 
    wndRegister = new Window(0, 0, SCREEN_W, SCREEN_H);
-   wndRegister->addComponent(new Textbox(104, 40, 100, 20, font));
-   wndRegister->addComponent(new Textbox(104, 70, 100, 20, font));
-   wndRegister->addComponent(new Button(22, 100, 90, 20, font, "Back", goToLoginScreen));
-   wndRegister->addComponent(new Button(122, 100, 60, 20, font, "Submit", registerAccount));
-   wndRegister->addComponent(new Button(540, 10, 80, 20, font, "Quit", quit));
-   wndRegister->addComponent(new RadioButtonList(20, 130, "Pick a class", font));
+   wndRegister->addComponent(new Textbox(516, 40, 100, 20, font));
+   wndRegister->addComponent(new Textbox(516, 70, 100, 20, font));
+   wndRegister->addComponent(new Button(468, 100, 56, 20, font, "Back", goToLoginScreen));
+   wndRegister->addComponent(new Button(534, 100, 70, 20, font, "Submit", registerAccount));
+   wndRegister->addComponent(new Button(920, 10, 80, 20, font, "Quit", quit));
+   wndRegister->addComponent(new RadioButtonList(432, 130, "Pick a class", font));
 
    txtUsernameRegister = (Textbox*)wndRegister->getComponent(0);
@@ -195,7 +195,7 @@
 
    wndMain = new Window(0, 0, SCREEN_W, SCREEN_H);
-   wndMain->addComponent(new Textbox(95, 40, 525, 20, font));
-   wndMain->addComponent(new Button(95, 70, 160, 20, font, "Send Message", sendChatMessage));
-   wndMain->addComponent(new Button(540, 10, 80, 20, font, "Logout", logout));
+   wndMain->addComponent(new Textbox(95, 40, 300, 20, font));
+   wndMain->addComponent(new Button(95, 70, 60, 20, font, "Send", sendChatMessage));
+   wndMain->addComponent(new Button(920, 10, 80, 20, font, "Logout", logout));
 
    txtChat = (Textbox*)wndMain->getComponent(0);
@@ -365,6 +365,6 @@
          // There should be label gui components that show these or each textbox should have a label
          if(wndCurrent == wndLogin || wndCurrent == wndRegister) {
-            al_draw_text(font, al_map_rgb(0, 255, 0), 4, 43, ALLEGRO_ALIGN_LEFT, "Username:");
-            al_draw_text(font, al_map_rgb(0, 255, 0), 1, 73, ALLEGRO_ALIGN_LEFT, "Password:");
+            al_draw_text(font, al_map_rgb(0, 255, 0), 416, 43, ALLEGRO_ALIGN_LEFT, "Username:");
+            al_draw_text(font, al_map_rgb(0, 255, 0), 413, 73, ALLEGRO_ALIGN_LEFT, "Password:");
          }
          else if(wndCurrent == wndMain) {
