Found a nice piece of code here Dynamic signature/date line and modified it to this:
\newcommand*{\DateAndSignature}[1]{%
..\newline
\par\noindent\makebox[2.25in]{Musterstadt, den}{\hrulefill} \hfill\makebox[2.25in]{\hrulefill}%
\par\noindent\makebox[2.25in][l]{} \hfill\makebox[2.25in][c]{#1}%
}%
But the result is not exactly as I would like it to be, which would be:
Musterstadt, den ______________ _______________________________
Muster Name
The two parts shall be divided to left and right, as an extra, there might be an indentation to the usual paragraph width, but this is optional.
My problem is the line after den, can't get it there in a proper way - any ideas?
Thanks in advance!
Edit:
combined solution, thanks to the given answers:
\documentclass[a4paper,10pt]{scrreprt}
\usepackage[utf8x]{inputenc}
\newcommand*{\DateAndSignature}[1]{%
\rule{0pt}{2\baselineskip} %
\par\noindent\makebox[2.25in]{\indent Musterstadt, den \hrulefill} \hfill\makebox[2.25in]{\hrulefill}%
\par\noindent\makebox[2.25in][l]{} \hfill\makebox[2.25in][c]{#1}%
}%
\begin{document}
\DateAndSignature{Muster Name}
\end{document}

