; ----------------------------------------------------------------------------
;
; AutoIt Version: 3.1.0
; Author:         A.N.Other <myemail@nowhere.com>
;
; Script Function:
;	Template AutoIt script.
;
; ----------------------------------------------------------------------------
#include <GuiConstants.au3>
; Script Start - Add your code below here
;Inputbox
$user = InputBox ("Name?", "Geben Sie ihren Benutzernamen ein!",""," ")
$key = InputBox ("Passwort", "Geben sie ihr Passwort ein!","","*")
;Name
$name = IniRead ("Passwort.txt", "Name", "User", "default")
$passwort = IniRead ("Passwort.txt", "Passwort","key","default")
;Überprüfe Name + Passwort
;z.B SoundPlay (...)
If 	$name & $Passwort = $user & $key Then
	
else 
	Exit
EndIf