40 lines
843 B
Java
40 lines
843 B
Java
/*
|
|
* To change this license header, choose License Headers in Project Properties.
|
|
* To change this template file, choose Tools | Templates
|
|
* and open the template in the editor.
|
|
*/
|
|
package com.test.forms;
|
|
|
|
import com.test.beans.User;
|
|
import jakarta.servlet.http.HttpServletRequest;
|
|
|
|
/**
|
|
*
|
|
* @author thomas.millot
|
|
*/
|
|
public class AuthentifForm {
|
|
|
|
private String resultat;
|
|
|
|
public String getResultat() {
|
|
return resultat;
|
|
}
|
|
|
|
public void setResultat(String resultat) {
|
|
this.resultat = resultat;
|
|
}
|
|
|
|
public boolean controlerAdmin(HttpServletRequest request) {
|
|
|
|
String userSaisi = request.getParameter("ztPseudo");
|
|
String mdpSaisi = request.getParameter("ztMDP");
|
|
String mdpChiffre = MD5.encode(mdpSaisi);
|
|
|
|
String sql=
|
|
|
|
return ;
|
|
|
|
}
|
|
|
|
}
|