Do not use regular expressions to parse HTML.
But if you ever need to find all regexp matches in a string, use the findall function.
import re
line = 'bla bla bla some text... more text?'
matches = re.findall('', line, re.DOTALL)
print(matches)
# Output: ['Form 1', 'Form 2']