-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUsername&PasswordTeyit.fprg
43 lines (43 loc) · 2.1 KB
/
Username&PasswordTeyit.fprg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?xml version="1.0"?>
<flowgorithm fileversion="4.2">
<attributes>
<attribute name="name" value=""/>
<attribute name="authors" value="veysel"/>
<attribute name="about" value=""/>
<attribute name="saved" value="2024-08-05 11:49:44 ÖS"/>
<attribute name="created" value="dmV5c2VsO1ZFWVNFTC1QQzsyMDI0LTA4LTA1OzExOjM2OjA0IMOWUzsyNzQ4"/>
<attribute name="edited" value="dmV5c2VsO1ZFWVNFTC1QQzsyMDI0LTA4LTA1OzExOjQ5OjQ0IMOWUzsxOzI4NjQ="/>
</attributes>
<function name="Main" type="None" variable="">
<parameters/>
<body>
<declare name="username, password" type="String" array="False" size=""/>
<output expression=""username giriniz"" newline="True"/>
<input variable="username"/>
<output expression=""password giriniz"" newline="True"/>
<input variable="password"/>
<if expression="username="admin" && password="admin"">
<then>
<output expression=""hoşgeldin admin"" newline="True"/>
</then>
<else>
<if expression="username="admin" && password!="admin"">
<then>
<output expression=""sifre hatali"" newline="True"/>
</then>
<else>
<if expression="username!="admin" && password="admin"">
<then>
<output expression=""kullanici yanlis"" newline="True"/>
</then>
<else>
<output expression=""girilen bütün bilgiler yanlis"" newline="True"/>
</else>
</if>
</else>
</if>
</else>
</if>
</body>
</function>
</flowgorithm>