To get the Date of Monday of the current week, you can use the following in a Math column:
Now+MOD(8-WEEKDAY(Now),7)-6
You can then use the result of that in a Template column:
If you want the date of Monday next week, just adjust the Math column as follows:
Now+MOD(8-WEEKDAY(Now),7)-6+7