@@ -48,4 +48,18 @@ const View = {
`;
},
+
+ renderUserRegister() {
+ const main = document.getElementById('main');
+ main.innerHTML = `
+
+
Create User
+
+ `;
+ },
};
\ No newline at end of file
diff --git a/src/interface_adapters/README.md b/src/interface_adapters/README.md
index f73bae9..2108b1b 100644
--- a/src/interface_adapters/README.md
+++ b/src/interface_adapters/README.md
@@ -1,5 +1,5 @@
# INTERFACE ADAPTERS
-The software in the interface adapters layer is a set of adapters that convert data from
+"The software in the interface adapters layer is a set of adapters that convert data from
the format most convenient for the use cases and entities, to the format most
convenient for some external agency such as the database or the web. It is this layer,
for example, that will wholly contain the MVC architecture of a GUI. The
@@ -14,4 +14,6 @@ restricted to this layer—and in particular to the parts of this layer that hav
the database.
Also in this layer is any other adapter necessary to convert data from some external
form, such as an external service, to the internal form used by the use cases and
-entities.
\ No newline at end of file
+entities." -- Robert C. Martin, Clean Architecture
+
+# Aufgabe
\ No newline at end of file