Spudster said:
It is in beta so it is very simple at the moment
What mistakes do you see I can fix them
Through page source i can only see HTML code and not PHP (as PHP is server side script).
Here are the HTML errors i noticed.
Index:
1) You don't have Doctype declared, which is very essential for validating your code.
2) You don't have <html>, <head>, <body> and <title> code. Without them, HTML is nothing.
3) See "But Here Are Some Links For Now! </a>". It has a </a> whereas you haven't started a link through "a href" before that.
4) <div id=div>. You can't use an ID named "div". And it doesn't have an end div </div>.
5) You have used <style> ....... </style>. Whereas you can't just say <style>. Its should be like <style type="text/css">.
Login:
1) You used two <html> in start, whereas there should be only 1. Also at the end of code, there should be a </html>.
2) <head>, <body>, <title> are missing as well.
3) Doctype is missing as well.
4) <style> needs type as i previously said.
5) You can't enclose <style> and <meta> inside <center> tag.
6) You have started <center> in three places, whereas you haven't ended them with </center> anywhere.
7) Note that <center> is depreciated and you should try using <div align="center"> instead and end it with </div>.
8) You haven't started <body> but have a </body> in end.
9) If the code is end the input elements with />
10) You have started <p>, but haven't ended it anywhere.
11) You have started a form but don't have </form> to end it.
Register:
1) Same thing with doctype, <html>, <head>, <title>, <body>, <center>.
2) Declare meta within <head> element.
Your shoutbox page shows the files list. Which is really bad, considering anyone can get your files. Use an index.html or index.php.
And all the errors i spotted in index, login and register are present in the "Status" page too. Correct them as well.