Zonefolio
[Development Thread]
What is Zonefolio?[Development Thread]
Zonefolio is a user friendly platform which allows anyone to create a portfolio for free. The website will have multiple responsive themes which can be used at no extra cost, however for unlimited support and extra themes which are only available for premium users you can pay a onetime payment to unlock all the website features. Zonefolio is in development and managed by myself and @Steadi (Matthew). We have high expectations of this project and wish to be taken seriously. The website will be coded in standard HTML5, CSS3 elements, PHP, MySQLi and Python for a super secure logging in system.
<?php echo $C0D3_Sn!pP3tz ?>
Code:
def SQL_CheckUser(Database, Cursor, Username, Password):
sql = "select * from Users";
Cursor.execute(sql);
userList = Cursor.fetchall();
for i in range(0,len(userList)):
if (userList[i][1] == Username):
if (userList[i][2] == Password):
HTML_Print("[] Your credentials have been confirmed");
return True;
HTML_Print("[!] Could not validate credentials.");
HTML_Print("[!] Was your login information correct?");
return False;
def SQL_Close(Cursor):
Cursor.close();
Last edited: